/* General Styling */
* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
}

body {
      font-family: "Poppins";
      display: flex;
      flex-direction: column;
}

.contact-us {
      padding: 40px;
      display: flex;
      justify-content: center;
      align-items: center;
      min-height: 90vh;
}

.container {
      display: flex;
      gap: 40px;
      /* max-width: 1400px; */
      min-height: 620px;
      background-color: #ededed;
      width: 100%;
      padding: 1.5rem;
}

/* Left Side: Get in Touch Form */
.get-in-touch {
      flex: 1;
}

.get-in-touch h2 {
      /* margin-bottom: 20px; */
      color: #000;
}

.get-in-touch form {
      display: flex;
      flex-direction: column;
}

.get-in-touch label {
      /* margin: 10px 0 5px; */
      color: #000;
}

.get-in-touch label .required {
      color: red;
      font-weight: bold;
}

.get-in-touch input,
.get-in-touch textarea {
      /* padding: 10px; */
      font-size: 16px;
      /* margin-bottom: 15px; */
      border: 1px solid #ccc;
      border-radius: 4px;
}

.get-in-touch button {
      padding: 10px 20px;
      font-size: 1.3rem;
      color: white;
      background-color: #000;
      border: none;
      border-radius: 4px;
      cursor: pointer;
      transition: background 0.3s;
}

.get-in-touch button:hover {
      background-color: #3f3f3f;
}

/* Right Side: Contact Information */
.contact-info {
      margin-left: 4rem;
      flex: 1;
      color: #333;
      max-width: 600px;
}

.contact-info h2 {
      text-align: left;
      margin-bottom: 20px;
}

.contact-info p {
      margin: 10px 0px;
      font-size: 16px;
      display: flex;
      align-items: center;
}

.contact-info i {
      margin-right: 20px;
      font-size: 18px;
      color: #333;
}

.mandatory {
      margin-bottom: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {

      .contact-us {
            padding: 20px;
            height: fit-content;
            overflow-x: hidden;
      }

      .container {
            flex-direction: column;
            align-items: center;
            overflow-x: hidden;
      }

      .contact-info,
      .get-in-touch {
            width: 100%;
      }

      .contact-info {
            margin-left: 1rem;
            margin-top: 1rem;
      }

      .contact-info p {
            font-size: 1rem;
      }

      .social-icons h4 {
            font-size: 0.7rem;
      }

      iframe {
            margin-left: -1rem;
            width: -webkit-fill-available;
      }
}

@media (max-width:370px) {
      .contact-info h2 {
            text-align: left;
      }

      .contact-info p {
            font-size: 0.8rem;
      }
}

@media (max-width:300px) {

      .contact-info p {
            font-size: 0.6rem;
      }
}