.faq-section {
  width: 100%;
  }
  .faq-item {
    border-bottom: 1px solid #d6e6e4;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 18px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 20px;
    font-weight: 700;
    cursor: pointer;
    text-align: left;
}

.faq-icon {
    font-size: 26px;
    line-height: 1;
    transition: transform 0.25s ease;
}


.faq-answer {
    padding: 0 0 20px 0;
    font-size: 16px;
    line-height: 1.6;
}




.container_c303f6b7a2c0 {
    border: none !important;
}

/* Border after click */
.container_c303f6b7a2c0.show-border {
    border:4px solid #239e92 !important;
}


.button_6e8f06c5902c,
.container_e9bf8189b74c,
.button_51da03316b2e,
.text_40e54cfb221e,
.text_8ef0708f4639 {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    visibility: hidden;
    transition: all 0.4s ease;
}

/* Show content */
.button_6e8f06c5902c.show-content,
.container_e9bf8189b74c.show-content,
.button_51da03316b2e.show-content,
.text_40e54cfb221e.show-content,
.text_8ef0708f4639.show-content {
    opacity: 1;
    max-height: 1000px; 
    visibility: visible;
}



/* modal csss */

    *{
      box-sizing: border-box;
    }
    /* Overlay */
.exit-popup-overlay {
  font-family: "Rethink Sans", sans-serif;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  display: none;
  /*display: flex;*/
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

/* Popup box */
.exit-popup {
  background: #fff;
  border-radius: 20px;
  max-width: 1024px;
  width: 90%;
  padding: 50px;
  position: relative;
  animation: fadeInScale 0.3s ease;
}

/* Close */
.popup-close {
  position: absolute;
  top: 25px;
  right: 25px;
  border: none;
  background: none;
  cursor: pointer;
}
.popup-close img {
    width: 15px;
}

/* Content layout */
.popup-content {
  display: flex;
  gap: 4rem;
  align-items: center;
}

.popup-image img {
  max-width: 440px;
  border-radius: 12px;
  object-fit: cover;
}

.popup-text {
    width: 100%;
}

/* Text */
.popup-header {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: space-between;
}

.popup-header h2 {
  margin: 0;
  font-size: 50px;
  font-weight: 800;
  color: #2A2A2A;
  line-height: 1;
}

.rating {
  background: #239E9214;
  color: #2A2A2A;
  font-weight: 800;
  padding: 6px 14px;
  border-radius: 8px;
  font-size: 32px;
}

.subtitle {
  margin: 20px 0 15px;
  font-weight: 500;
  font-size: 24px;
  color: #2A2A2A;
  line-height: 1.4;
}

.highlight {
  color: #239E92;
  font-weight: 800;
  font-size: 26px;
  margin: 15px 0 30px;
  line-height: 1;
}

/* Buttons */
/*.btn {
  padding: 12px 16px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
}*/

.btn-bg {
  border: 1px solid #0a7f73;
  color: #fff;
  background: #0B5353;
}
.btn-visit {
  background: #239E92;
  color: #fff;
  display: flex;
  align-items: center;
  gap: .5rem;
  text-align: center;
  justify-content: center;
}
.popup-actions {
  margin-top: 16px;
  display: flex;
  gap: 12px;
}
.popup-actions .btn {
  padding: 12px 16px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
}



/* Animation */
@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Mobile */
@media (max-width: 768px) {
    .exit-popup{
      padding: 40px;
    }
    .popup-content {
      flex-direction: column;
        gap: 2rem;
    }
    .popup-content .subtitle{
      font-size: 20px;
    }
    .popup-content .highlight{
      font-size: 20px;
    }
    .popup-header h2{
      font-size: 46px;
    }
  .popup-actions{
      flex-direction: column;
    }
    .popup-actions .btn{
        padding: 15px 16px;
        font-size: 18px;
    }
    .popup-image img {
      width: 100%;
    }
}

















/* Brand */
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
}

.brand img {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: #fff;
  padding: 4px;
}

.brand h4 {
  font-size: 18px;
  font-weight: 700;
  text-transform: lowercase;
}

.brand p {
  font-size: 13px;
  opacity: 0.9;
}

/* Rating */
.sticky-bar .rating {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
}

.score {
}

.stars {
  color: #facc15;
  font-size: 14px;
  line-height: 1;
}

.sticky-bar .label {
  font-size: 13px;
  opacity: 0.9;
}

/* CTA */
.cta-btn {
  background: #14b8a6;
  color: #fff;
  padding: 12px 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease;
}

.cta-btn:hover {
  background: #0d9488;
  color: #fff;
  text-decoration: none;
}

/* Responsive */
@media (max-width: 768px) {

  .rating {
    order: 3;
  }

  .cta-btn {
    order: 2;
  }
}
.popup-actions .btn:hover{
    color: white;
    background: #16a085;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(26, 188, 156, 0.3);
    outline: 0;
}