body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #ffffff;
}


.contact_container {
    display: flex;
    flex-direction: row;
    margin: 20px auto;
    padding: 20px;
  }
  .sub-div {
    width: 50%;
    padding: 10px;
    box-sizing: border-box;
  }
  .map-iframe {
    width: 100%;
    height: 650px; 
    border: none;
  }
  .contact-info {
    background-color: #ffffff;
  }
  .contact-info p{
    /* font-family: Georgia, serif; */
    font-size: 30px;
    text-align:center;
  }
  .contact-info h3{
    border-bottom: 5px solid #FFD700;
    padding-bottom: 10px;
    margin-bottom: 20px;
    color: #333;
    /* font-family: Georgia, serif; */
    font-size: 40px;
    text-align:center;
    /* font-weight: bold; */
  }
  .form-group1{
    margin-bottom: 30px;
    display: flex;
    align-items: center;
  }
  .icons-container {
    display: flex;
    justify-content: center;
  }
  .icons-container img {
    width: 50px;
    height: 50px;
    margin: 0 10px;
  }
  @media (max-width: 1000px) {
    .contact_container {
      flex-direction: column;
    }

    .sub-div {
      width: 100%;
    }
    .mobile-menu li {
      margin: 10px 0;
      padding: 0; 
      font-size: 16px; 
    }
  }
  .contact {
      font-family: Arial, sans-serif;
      background-color: #ffffff;
      margin: 0;
      padding: 0;
      display: flex;
      justify-content: center;
      align-items: center;
      height: 100vh;
  }
  .contact h2 {
      text-align: center;
      margin-bottom: 20px;
      color: #333;
      font-size: 40px;
      border-bottom: 5px solid #FFD700;
  }
  .contact form {
      background-color: #fff;
      border-radius: 8px;
      padding: 20px;
      box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
      width: 100%;
      max-width: 600px; 
      margin: 0 auto; 
  }

  .contact label {
      font-weight: bold;
      margin-bottom: 10px;
      font-size: 20px; 
  }

  .contact input[type="text"],
  .contact input[type="email"],
  .contact textarea {
      width: 95%;
      padding: 15px; 
      border: 1px solid #ccc;
      border-radius: 6px;
      margin-bottom: 15px; 
      font-size: 18px;
  }

.contact textarea {
      resize: vertical;
}

.contact input[type="submit"] {
      background-color: #f44336;
      color: #fff;
      border: none;
      border-radius: 4px;
      padding: 15px 30px;
      cursor: pointer;
      font-weight: bold;
      font-size: 20px;
      transition: background-color 0.3s;
}

.contact input[type="submit"]:hover {
      background-color: #d32f2f;
}


@media (max-width: 1000px) {
  .contact-info p{
    font-size: 20px;
  }

  .contact-info h3{
    font-size: 30px;
  }

  .contact h2 {

    font-size: 30px;
  }
.contact label {
    font-size: 14px;
}
}

@media (max-width: 600px) {
.contact-info p{
  font-size: 12px;
}

.contact-info h3{
  font-size: 20px;
}
.contact h2 {

  font-size: 20px;
}
.contact label {
  font-size: 12px;
}
}