body {
  font-family: 'Poppins', sans-serif;
  background-color: #f3f8fc;
  margin: 0;
  padding: 0;
}

.container-contact {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

main {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px;
  flex-wrap: wrap;
}

/* === LEFT COLUMN === */
#content1-contact {
  flex: 1 1 45%;
  min-width: 320px;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: flex-start;
}

.contact-info-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

#content1-contact h1 {
  font-size: 20px;
  color: #002f5c;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 25px;
}

#content1-contact ul {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  gap: 44px;
  justify-content: flex-start;
  list-style: none;
  padding: 0;
  margin: 0;
}

#content1-contact li {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
}

.icon-phone,
.icon-email {
  width: 50px;
  height: 50px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  margin-right: 15px;
}

.icon-phone {
  background-image: url('../img/phone-call.png');
}

.icon-email {
  background-image: url('../img/email.png');
}

.icon-whatsapp {
  width: 50px;
  height: 50px;
  background-image: url('../img/whatsapp.png');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  margin-right: 15px;
}

.whatsapp-contact h2 {
  font-size: 16px;
  color: #25D366;
  margin: 0;
  font-weight: 600;
}

.whatsapp-contact .whatsapp-link {
  display: inline-block;
  margin-top: 6px;
  font-size: 15px;
  color: #002f5c;
  text-decoration: none;
  font-weight: 500;
  padding: 6px 12px;
  background-color: #e9f9f0;
  border: 1px solid #25D366;
  border-radius: 6px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.whatsapp-contact .whatsapp-link:hover {
  background-color: #25D366;
  color: white;
}

.phone-number h2,
.email-address h2 {
  font-size: 16px;
  color: #25D366;
  margin: 0;
  font-weight: 600;
}

.phone-number a,
.email-address a {
  font-size: 15px;
  color: #002f5c;
  text-decoration: none;
}

/* === RIGHT COLUMN === */
#content2-contact {
  flex: 1 1 50%;
}

#content2-contact h1 {
  font-size: 20px;
  color: #002f5c;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

/* Form Container */
.container3-contact form {
  width: 100%;
  background: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.05);
}

.form-group {
  margin-bottom: 20px;
}

label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #002f5c;
}

input[type="text"],
input[type="email"],
textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
  font-family: 'Poppins', sans-serif;
  box-sizing: border-box;
}

textarea {
  resize: vertical;
  min-height: 100px;
}

.checkbox-group {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  margin-bottom: 20px;
}

.checkbox-group input[type="checkbox"] {
  width: 18px;
  height: 18px;
  cursor: pointer;
  border: 2px solid #ccc;
  border-radius: 4px;
  background-color: white;
  appearance: none;
  -webkit-appearance: none;
  position: relative;
  margin-right: 10px;
  transition: all 0.2s ease;
}
.checkbox-group input[type="checkbox"]:checked {
  background-color: #25D366;
  border-color: #25D366;
}

.checkbox-group input[type="checkbox"]:checked::after {
  content: '✔';
  color: white;
  position: absolute;
  top: 0;
  left: 4px;
  font-size: 12px;
}

.checkbox-group a {
  color: #007BFF;
  text-decoration: underline;
}

form button {
  background-color: #25D366;
  color: white;
  border: none;
  padding: 14px 25px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

form button:hover {
  background-color: #1cbf58;
}

/* Contact Info Card (matches form style) */
.contact-info-card {
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.05);
  margin-bottom: 32px;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  height: 100%;
  gap: 56px;
}
@media (max-width: 900px) {
  .contact-info-card {
    padding: 18px 8px;
  }
}

/* Contact Page Header Row */
.contact-header-row {
  width: 100%;
  margin: 0 auto 36px auto;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 20px 20px 0
}
.contact-header-content {
  max-width: 900px;
  background: none;
  text-align: center;
}
.contact-header-content h1 {
  font-size: 2.1rem;
  color: #002f5c;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: 0.01em;
}
.contact-header-content p {
  font-size: 1.08rem;
  color: #222;
  line-height: 1.7;
  margin: 0 auto;
  max-width: 700px;
}

/* Flex row for contact info and form */
.contact-flex-row {
  display: flex;
  gap: 60px;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: wrap;
}
#content1-contact, #content2-contact {
  flex: 1 1 45%;
  min-width: 320px;
  display: flex;
  flex-direction: column;
}
@media (max-width: 900px) {
  #content1-contact, #content2_contact {
    min-width: unset;
    height: auto;
  }
  .contact-info-card {
    height: auto;
  }
}

/* Map Section - Make Map Container Larger */
.map-section {
  width: 100%;
  margin: 60px 0 0 0;
  padding: 0;
  background: none;
}
.map-section h2 {
  font-size: 1.5rem;
  color: #002f5c;
  font-weight: 700;
  margin-bottom: 18px;
  text-align: left;
  padding-left: 0;
  max-width: none;
}
.map-container {
  width: 100%;
  margin: 0;
  border-radius: 0;
  overflow: hidden;
  box-shadow: 0 6px 24px rgba(0,0,0,0.07);
  background: none;
}
.map-container iframe {
  width: 100%;
  min-height: 420px;
  height: 420px;
  border: 0;
  display: block;
}
@media (max-width: 600px) {
  .map-container iframe {
    min-height: 260px;
    height: 260px;
  }
}
