 <style>
 /* Contact top bar */
.contact-top {
  display: flex;
  justify-content: flex-end;
  padding: 0.5rem 2rem;
}

.contact-top a {
  color: white;
  text-decoration: none;
  font-size: 1rem;
  margin-left: 1.5rem;
  white-space: nowrap;
  display: flex;
  align-items: center;
}

.contact-top a i {
  margin-right: 0.5rem;
  font-size: 1.2rem;
  color: #0bb;
}

.contact-top a:hover {
  text-decoration: underline;
}

/* Contact section layout */
.contact-section {
  padding: 3rem 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  gap: 6rem;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-info,
.contact-form {
  flex: 1;
  min-width: 300px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  justify-content: space-between;
}

.info-item {
  margin-bottom: 0.3rem;
}

.info-label {
  font-size: 1.2rem;
  font-weight: bold;
  color: #004D40;
  margin-bottom: 0.3rem;
  display: block;
}

.info-text {
  font-size: 1rem;
  color: #004D40;
}

.icon-text {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1rem;
  color: #004D40;
}

.icon-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background-color: #009999;
  border-radius: 50%;
  color: white;
  flex-shrink: 0;
}

.contact-form-block {
  flex: 0 0 50%;
  min-width: 300px;
  max-width: 100%;
}
.contact-form-block {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contact-form {
  width: 100%;
}

.contact-form label {
  display: block;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.7rem;
  margin-top: 0.4rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
  font-family: inherit;
  box-sizing: border-box;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #009999;
  border-radius: 8px;
  outline: none;
  box-shadow: 0 0 0 2px rgba(0, 153, 153, 0.2);
}

.contact-form textarea {
  min-height: 120px;
  resize: vertical;
}
.contact-form button {
  background-image: linear-gradient(
    120deg,
    #009999 0%,
    #00cccc 50%,
    #009999 100%
  );
 .contact-intro {
  margin-bottom: 1.5rem;
  font-size: 1rem;
  color: #333;
  max-width: 600px;
}
  background-size: 400px 100%;
  animation: shimmerForm 1.5s linear infinite;
  background-color: #009999;
  color: white;
  border: none;
  padding: 0.8rem 1.6rem;
  cursor: pointer;
  border-radius: 6px;
  font-size: 1rem;
  margin-top: 1rem;
  width: 100%;
  box-sizing: border-box;
  transition: background-color 0.3s ease;
}
@keyframes shimmerForm {
  0% {
    background-position: -200px 0;
  }
  100% {
    background-position: 200px 0;
  }
}
.contact-form button:hover {
  background-image: linear-gradient(
    120deg,
    #009999 0%,
    #00cccc 50%,
    #009999 100%
  );
  background-size: 400px 100%;
  animation: shimmerForm 1.5s linear infinite;
  color: white;
}
.section-heading {
  color: #004d4d;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  font-family: 'Inter', sans-serif;
}

/* Map styling */
    .contact-map {
      width: 100%;
      margin-top: 1rem;
      margin-bottom: 0.75rem;
    }
footer {
  padding-top: 0.5rem; /* This reinforces the gap from below */
}
    .contact-map iframe {
      width: 100%;
      height: 350px;
      border: none;
      border-radius: 2px;
    }

    @media (max-width: 768px) {
      .contact-container {
        flex-direction: column;
      }
    }
@media (min-width: 768px) {
  .contact-container {
    display: flex;
    justify-content: space-between;
    gap: 6rem;
    align-items: stretch;
  }
}
@media (max-width: 768px) {
  .contact-container {
    gap: 4rem;
  }
}
#map {
  position: relative;
  z-index: 1;
}
.collapsible + .content {
  z-index: 2;
}
/* Responsive tweaks */
@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
    gap: 3rem;
  }

  .contact-form-block,
  .contact-info-block {
    flex: 1 1 100%;
  }
}   
/* Dropdown styling */
.dropdown-content {
  display: none;
  flex-direction: column;
  padding-left: 1.2rem;
  font-size: 0.85rem;
  color: #fffdd0;
}

.dropdown-content p {
  margin: 0.2rem 0;
}

/* Dropdown content hidden by default */
.dropdown-content {
  display: none;
  flex-direction: column;
  padding-left: 1.2rem;
  font-size: 0.85rem;
  color: #fffdd0;
  margin-top: 0.5rem;
}

/* Desktop: Show on hover */
@media (min-width: 768px) {
  .dropdown:hover .dropdown-content {
    display: flex;
  }
}

/* Mobile: Show when .show class is added */
@media (max-width: 767px) {
  .dropdown-content.show {
    display: flex;
  }
}
@media (max-width: 600px) {
  .footer-block h4,
  .footer-block a {
    text-align: center;
  }
}
.policy-section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin: 0;
  padding: 0;
  border-radius: 0;
  font-family: 'Playfair Display', serif;
}
.policy-section .collapsible {
  background: none;
  border: none;
  font-size: 1rem;
  font-weight: bold;
  color: #004d4d;
  cursor: pointer;
  text-align: left;
  width: 100%;
  padding: 0;
}

.policy-section .content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-top: 0.25rem;
  font-size: 0.9rem;
  line-height: 1.6;
}
.collapsible-content {
  display: none;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.collapsible-content.open {
  display: block;
  max-height: 500px; /* adjust as needed */
}

.scrollable-policy {
  max-height: 400px;
  overflow-y: auto;
  padding: 0.25rem;
  background-color: #f5f5f5;
  border-radius: 0;
  font-size: 0.9rem;
  line-height: 1.6;
}
.collapsible {
  display: inline-block;
  border: 1px solid #ccc; /* light grey border */
  background: none;
  color: #333;
  font-size: 1rem;
  font-weight: 500;
  padding: 0.2rem 0.6rem; /* minimal padding for text breathing room */
  border-radius: 4px; /* optional: soften corners */
  cursor: pointer;
  text-align: center;
  text-decoration: none;
}
</style>


















































