.logo img {
  left: 15vw;
  z-index: 999;
  filter: none;
}

.nav a{
    color: #005a56;
}

.language-dropdown select {
    color: #005a56;
}

.hamburger {
    color: #005a56;
}

.contact-section {
  margin-top: 15vh;
  padding: 4rem 2rem;
  background: #fff;
}

.contact-container {
  display: flex;
  gap: 2rem;
  max-width: 1200px;
  margin: auto;
  flex-wrap: wrap;
}

/* Left: Office Info */
.contact-info {
  flex: 1;
  background-color: #005a56;
  color: white;
  padding: 2rem;
  border-radius: 0.5rem;
  min-width: 300px;
}

.contact-info h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.contact-info p {
  font-size: 1rem;
  margin-bottom: 1.5rem;
}

.map-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 0.5rem;
}

.map-wrapper img {
  width: 100%;
  border-radius: 0.5rem;
}

.map{
  position: relative; 
  padding-bottom: 56.25%; 
  height: 0; 
  overflow: hidden;
}

.map-button {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.5rem 1rem;
  border: 1px solid white;
  color: white;
  text-decoration: none;
  border-radius: 4px;
  font-size: 0.9rem;
}

/* Right: Contact Form */
.contact-form {
  flex: 1;
  min-width: 300px;
}

.contact-form h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.form-underline {
  width: 50px;
  height: 4px;
  background-color: #005a56;
  margin-bottom: 2rem;
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form input,
.contact-form textarea {
  padding: 1rem;
  font-size: 1rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  width: 100%;
  resize: vertical;
}
.submit-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.success-message,
.error-message {
  font-size: 0.95rem;
  padding: 0.6rem 1rem;
  border-radius: 6px;
  color: #fff;
  background-color: #28a745; /* success green */
}

.error-message {
  background-color: #dc3545; /* error red */
}

.submit-button {
  align-self: flex-end;
  background-color: #005a56;
  border: none;
  padding: 1rem;
  border-radius: 20px;
  cursor: pointer;
  text-decoration: none;
  color: white;
}

.submit-button .arrow {
  display: inline-block;
  width: 0.6rem;
  height: 0.6rem;
  border-top: 2px solid white;
  border-right: 2px solid white;
  transform: rotate(-45deg);
}

.faq-section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 4rem 2rem;
  font-family: 'Segoe UI', sans-serif;
}

.faq-section h2 {
  font-size: 2.5rem;
  color: #005a56;
  margin-bottom: 0.5rem;
}

.faq-subtitle {
  text-align: right;
  font-size: 1rem;
  color: #333;
  margin-bottom: 2rem;
}

.faq-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background-color: #f7f7f7;
  border-radius: 12px;
  box-shadow: 0 0 0 1px #ddd;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  font-size: 1rem;
  padding: 1.25rem;
  text-align: left;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #333;
}

.faq-icon {
  font-size: 1.25rem;
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 1.25rem;
  background: #f1f1f1;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-answer.active {
  padding: 1rem 1.25rem;
  max-height: 500px;
}

.faq-answer ul {
  padding-left: 1.25rem;
  margin: 0;
}

.faq-answer li {
  line-height: 1.6;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

/* Icon Rotation */
.faq-item.open .faq-icon {
  transform: rotate(180deg);
}

/* --- Responsive Design --- */
@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
  }

  .submit-button {
    align-self: center;
  }

  .faq-section h2 {
    font-size: 2rem;
    text-align: center;
  }

  .faq-subtitle {
    text-align: center;
    font-size: 0.9rem;
  }

  .faq-question {
    font-size: 0.95rem;
    padding: 1rem;
  }

  .faq-answer.active {
    padding: 0.75rem 1rem;
  }
  .submit-row {
    flex-direction: column-reverse;
    align-items: flex-start;
  }
}