/* FAQ Section Styles */
.contact-faq-section {
  background: #fff;
  padding: 64px 0 64px 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.contact-faq-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 32px;
  letter-spacing: 1px;
}
.contact-faq-items {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.faq-item {
  border-bottom: 2px solid #111;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  outline: none;
  font-family: 'Plus Jakarta Sans';
  font-size: 1.25rem;
  font-weight: 700;
  text-align: left;
  padding: 24px 0 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: background 0.2s;
}

.faq-icon {
  font-size: 1.5rem;
  margin-left: 16px;
  transition: transform 0.2s;
}
.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.3s cubic-bezier(0.4,0,0.2,1);
  background: none;
  text-align: left;
}

@media (max-width: 900px) {
  .contact-faq-title {
    font-size: 2rem;
  }
  .contact-faq-items {
    max-width: 98vw;
  }
  .faq-question {
    font-size: 1.1rem;
    padding: 18px 0 18px 0;
  }
}
@media (max-width: 600px) {
  .faq-question {
    font-size: 1.1rem;
    padding: 18px 0 18px 0;
    color: #222 !important;
  }
  .contact-faq-title {
    font-size: 1.2rem;
    margin-bottom: 18px;
  }
  .faq-question {
    font-size: 1rem;
    padding: 12px 0 12px 0;
  }
  .faq-answer p {
    font-size: 0.98rem;
  }
}
/* Inscription Section Styles */
.contact-inscription-section {
  background: #dde6ee;
  padding: 48px 0 48px 0;
  width: 100%;
}
.contact-inscription-grid {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  max-width: 1400px;
  margin: 0 auto;
  gap: 48px;
  padding: 0 32px;
}
.contact-inscription-left {
  flex: 1 1 420px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  text-align: left;
}
.contact-inscription-school {
  font-family: 'Lora', serif;
  font-size: 1.1rem;
  color: #222;
  margin-bottom: 12px;
  text-align: left;
  width: 100%;
}
.contact-inscription-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 4rem;
  font-weight: 700;
  color: #111;
  margin: 0 0 24px 0;
  line-height: 1.05;
}
.contact-inscription-img {
  margin-top: 24px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.contact-inscription-img img {
  width: 150px;
  height: 150px;
  object-fit: contain;
}
.contact-inscription-right {
  flex: 2 1 600px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 18px;
  text-align: left;
}
.contact-inscription-steps {
  list-style: decimal inside;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.35rem;
  color: #111;
  margin: 0;
  padding: 0;
  line-height: 1.6;
}
.contact-inscription-steps li {
  margin-bottom: 18px;
  font-weight: 400;
}
.contact-inscription-steps li b {
  font-weight: 600;
}
@media (max-width: 1100px) {
  .faq-question {
    font-size: 1rem;
    padding: 12px 0 12px 0;
    color: #222 !important;
  }
  .faq-answer p {
    font-family: 'Plus Jakarta Sans', sans-serif !important;
    font-size: 0.98rem !important;
    font-weight: 400 !important;
    color: #222 !important;
  }
  .contact-inscription-grid {
    gap: 24px;
    padding: 0 12px;
  }
}
@media (max-width: 800px) {
  .contact-inscription-grid {
    flex-direction: column;
    align-items: center;
    gap: 32px;
  }
  .contact-inscription-left, .contact-inscription-right {
    flex: auto;
    width: 100%;
    align-items: center;
    text-align: center;
  }
  .contact-inscription-title {
    font-size: 2rem;
  }

  .contact-inscription-img{
    display: none;
  }
  .contact-inscription-steps {
    font-size: 1.1rem;
    text-align: left;
  }
}
@media (max-width: 500px) {
  .contact-inscription-section {
    padding: 18px 0 18px 0;
  }
  .contact-inscription-title {
    font-size: 1.3rem;
  }
  .contact-inscription-img img {
    width: 70px;
    height: 70px;
  }
  .contact-inscription-steps {
    font-size: 0.98rem;
  }
}
.terms-modal-centered {
  text-align: center;
}
.terms-modal-logo {
  max-width: 600px;
  margin-bottom: 1.2rem;
}
.terms-modal-title {
  font-size: 2.1rem;
  font-weight: 700;
  margin-bottom: 1.1rem;
  color: #222;
  letter-spacing: -1px;
}
.terms-modal-lead {
  font-size: 1.08rem;
  color: #444;
  margin-bottom: 2.1rem;
  font-weight: 400;
}
.terms-modal-body {
  font-size: 1.01rem;
  color: #222;
  margin-bottom: 0.5rem;
  text-align: left;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
/* Terms Modal Dialog Styles */
.terms-modal::backdrop {
  background: rgba(44, 62, 80, 0.45);
  z-index: 1001;
}
.terms-modal {
  border: none;
  border-radius: 14px;
  max-width: 720px;
  width: 90vw;
  padding: 0;
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
  z-index: 1002;
  background: #fff;
}
.terms-modal-content {
  padding: 2.2rem 1.5rem 1.5rem 1.5rem;
  color: #234;
  position: relative;
}
.terms-modal-content h2 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #2d6a5e;
}
.terms-modal-content ul {
  margin: 1.2em 0 0 1.2em;
  padding: 0;
  color: #234;
  font-size: 1.01rem;
}
.terms-modal-content li {
  margin-bottom: 0.7em;
}
.terms-modal-close {
  position: absolute;
  top: 1.1rem;
  right: 1.1rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #2d6a5e;
  cursor: pointer;
  transition: color 0.2s;
}
.terms-modal-close:hover {
  color: #e74c3c;
}

@media (max-width: 600px) {
  .terms-modal-content {
    padding: 1.2rem 0.7rem 0.7rem 0.7rem;
  }
  .terms-modal {
    max-width: 99vw;
  }
}
/* Contact Page Styles */
.contact-main {
  background: var(--var-green-montessori);
}
.contact-section {
  display: flex;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 0 32px 0;
  border-radius: 18px;
  box-sizing: border-box;
}
.contact-form-container {
  text-align: left;
  flex: 1 1 380px;
  color: #fff;
  border-radius: 18px 0 0 18px;
  padding: 2.5rem 2rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}
.contact-form-container h2 {
  font-family: 'Lora';
  font-size: 1.1rem;
  font-weight: 400;
  margin-bottom: 0.2em;
  color: #fff9;
}
.contact-form-container h1 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 0.5em;
  color: #fff;
}
.contact-form-container p {
  font-family: 'Lora';
  margin-bottom: 1.5em;
  color: #e0e0e0;
}
.contact-form label {
  font-family: 'Lora';
  display: block;
  margin-bottom: 0.3em;
  font-size: 1.05rem;
  color: #fff;
}
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
  width: 100%;
  padding: 0.7em 1em;
  margin-bottom: 1.1em;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  background: #e6eef5;
  color: #222;
  resize: none;
  box-sizing: border-box;
}
.contact-form textarea {
  min-height: 100px;
}
.contact-terms {
  display: flex;
  align-items: center;
  margin-bottom: 1.2em;
  font-size: 0.98rem;
}
.contact-terms input[type="checkbox"] {
  margin-right: 0.5em;
}
.contact-terms a {
  color: #ffffff;
  text-decoration: underline;
}
.contact-submit {
  background: #F6BB3A;
  color: #ffffff;
  font-weight: 200;
  border: none;
  border-radius: 6px;
  padding: 0.7em 2.2em;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.contact-submit:hover {
  background: #fff;
  color: #2d6a5e;
}
.contact-map-container {
  flex: 1 1 420px;
  min-width: 0;
  overflow: hidden;
  display: flex;
  align-items: stretch;
  height: 100%;
}
.contact-map-container iframe {
  width: 100%;
  height: 100%;
  min-height: 650px;
  border: none;
  display: block;
}

.contact-success-message {
  background: #e6f7e6;
  color: #207520;
  padding: 1em;
  border-radius: 8px;
  margin-bottom: 1em;
  text-align: center;
  font-weight: 600;
}
@media (max-width: 900px) {
  .contact-section {
    flex-direction: column;
    gap: 0;
    padding: 24px 0 16px 0;
  }
  .contact-form-container, .contact-map-container {
    border-radius: 18px 18px 0 0;
    padding: 1.5rem 1rem 1rem 1rem;
  }
  .contact-map-container {
    border-radius: 0 0 18px 18px;
    min-height: 220px;
  }
}
@media (max-width: 600px) {
  .contact-section {
    padding: 8px 0 8px 0;
  }
  .contact-form-container, .contact-map-container {
    padding: 1rem 0.5rem 0.5rem 0.5rem;
  }
  .contact-form-container h1 {
    font-size: 2rem;
  }
}


.slider-desktop{
  display: block;
}
.slider-mobile{
    display: none;
}
@media screen and (max-width: 600px) {

     .slider-desktop{
        display: none;
    }
     .slider-mobile{
        margin: 1rem 0;
        display: block;
    }
}