/* style/kinh-nghiem-soi-keo-da-ga.css */

:root {
  --primary-color: #017439;
  --secondary-color: #FFFFFF;
  --text-dark: #333333;
  --text-light: #ffffff;
  --button-register: #C30808;
  --button-login: #C30808;
  --font-button-register-login: #FFFF00;
}

.page-kinh-nghiem-soi-keo-da-ga {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--secondary-color); /* Body background from shared.css is var(--secondary-color), so text should be dark */
}

.page-kinh-nghiem-soi-keo-da-ga__container {
  max-width: 1170px;
  margin: 0 auto;
  padding: 0 16px;
  box-sizing: border-box;
}

.page-kinh-nghiem-soi-keo-da-ga__hero-section {
  padding-top: 10px; /* Small top padding as body handles header offset */
  padding-bottom: 60px;
  background-color: var(--secondary-color);
  color: var(--text-dark);
}

.page-kinh-nghiem-soi-keo-da-ga__hero-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  padding: 40px 0;
}

.page-kinh-nghiem-soi-keo-da-ga__hero-content {
  flex: 1 1 50%;
  min-width: 300px;
}

.page-kinh-nghiem-soi-keo-da-ga__main-title {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--primary-color);
}

.page-kinh-nghiem-soi-keo-da-ga__hero-description {
  font-size: 1.1rem;
  margin-bottom: 30px;
}

.page-kinh-nghiem-soi-keo-da-ga__hero-image {
  flex: 1 1 40%;
  min-width: 300px;
  text-align: center;
}

.page-kinh-nghiem-soi-keo-da-ga__hero-side-image {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-kinh-nghiem-soi-keo-da-ga__cta-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.page-kinh-nghiem-soi-keo-da-ga__btn-primary,
.page-kinh-nghiem-soi-keo-da-ga__btn-secondary {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  text-align: center;
  white-space: normal;
  word-wrap: break-word;
  box-sizing: border-box;
  max-width: 100%;
}

.page-kinh-nghiem-soi-keo-da-ga__btn-primary {
  background-color: var(--button-register);
  color: var(--font-button-register-login);
  border: 2px solid var(--button-register);
}

.page-kinh-nghiem-soi-keo-da-ga__btn-primary:hover {
  background-color: darken(var(--button-register), 10%);
  border-color: darken(var(--button-register), 10%);
}

.page-kinh-nghiem-soi-keo-da-ga__btn-secondary {
  background-color: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.page-kinh-nghiem-soi-keo-da-ga__btn-secondary:hover {
  background-color: var(--primary-color);
  color: var(--text-light);
}

.page-kinh-nghiem-soi-keo-da-ga__content-area {
  padding: 60px 16px;
  background-color: var(--secondary-color);
  color: var(--text-dark);
}

.page-kinh-nghiem-soi-keo-da-ga__section-title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 30px;
  text-align: center;
  color: var(--primary-color);
}

.page-kinh-nghiem-soi-keo-da-ga__sub-title {
  font-size: 1.6rem;
  font-weight: 600;
  margin-top: 40px;
  margin-bottom: 20px;
  color: var(--primary-color);
}

.page-kinh-nghiem-soi-keo-da-ga__paragraph {
  margin-bottom: 20px;
  font-size: 1.05rem;
  line-height: 1.7;
}

.page-kinh-nghiem-soi-keo-da-ga__content-image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.page-kinh-nghiem-soi-keo-da-ga__list {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 20px;
}

.page-kinh-nghiem-soi-keo-da-ga__list-item {
  margin-bottom: 10px;
  font-size: 1.05rem;
  line-height: 1.7;
}

.page-kinh-nghiem-soi-keo-da-ga__cta-buttons--bottom {
  margin-top: 50px;
  justify-content: center;
}

.page-kinh-nghiem-soi-keo-da-ga__faq-section {
  background-color: var(--primary-color);
  color: var(--text-light);
  padding: 60px 16px;
}

.page-kinh-nghiem-soi-keo-da-ga__section-title--faq {
  color: var(--text-light);
  margin-bottom: 40px;
}

.page-kinh-nghiem-soi-keo-da-ga__faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.page-kinh-nghiem-soi-keo-da-ga__faq-item {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: var(--text-light);
}

.page-kinh-nghiem-soi-keo-da-ga__faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.15rem;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  outline: none;
  color: var(--font-button-register-login);
}

.page-kinh-nghiem-soi-keo-da-ga__faq-item summary::-webkit-details-marker {
  display: none;
}

.page-kinh-nghiem-soi-keo-da-ga__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  transition: transform 0.3s ease;
}

.page-kinh-nghiem-soi-keo-da-ga__faq-item[open] .page-kinh-nghiem-soi-keo-da-ga__faq-toggle {
  transform: rotate(45deg);
}

.page-kinh-nghiem-soi-keo-da-ga__faq-answer {
  padding: 0 25px 20px;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-light);
}

.page-kinh-nghiem-soi-keo-da-ga__faq-answer p {
  margin-bottom: 0;
}

/* --- Responsive Styles --- */

@media (max-width: 1024px) {
  .page-kinh-nghiem-soi-keo-da-ga__main-title {
    font-size: clamp(2rem, 3.5vw, 2.8rem);
  }
  .page-kinh-nghiem-soi-keo-da-ga__hero-description {
    font-size: 1rem;
  }
  .page-kinh-nghiem-soi-keo-da-ga__section-title {
    font-size: 2rem;
  }
  .page-kinh-nghiem-soi-keo-da-ga__sub-title {
    font-size: 1.4rem;
  }
  .page-kinh-nghiem-soi-keo-da-ga__paragraph,
  .page-kinh-nghiem-soi-keo-da-ga__list-item,
  .page-kinh-nghiem-soi-keo-da-ga__faq-item summary {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  /* HERO Section */
  .page-kinh-nghiem-soi-keo-da-ga__hero-section {
    padding-top: 10px !important;
    padding-bottom: 40px !important;
  }
  .page-kinh-nghiem-soi-keo-da-ga__hero-container {
    flex-direction: column;
    gap: 30px;
    padding: 30px 0;
  }
  .page-kinh-nghiem-soi-keo-da-ga__hero-content {
    text-align: center;
  }
  .page-kinh-nghiem-soi-keo-da-ga__main-title {
    font-size: 2.2rem !important;
    margin-bottom: 15px;
  }
  .page-kinh-nghiem-soi-keo-da-ga__hero-description {
    font-size: 0.95rem !important;
    margin-bottom: 25px;
  }
  .page-kinh-nghiem-soi-keo-da-ga__cta-buttons {
    flex-direction: column;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding: 0 15px;
    gap: 10px;
  }
  .page-kinh-nghiem-soi-keo-da-ga__btn-primary,
  .page-kinh-nghiem-soi-keo-da-ga__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 1rem;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
  .page-kinh-nghiem-soi-keo-da-ga__hero-image {
    order: -1; /* Move image above content on mobile */
  }
  .page-kinh-nghiem-soi-keo-da-ga__hero-side-image {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
  }

  /* Content Area */
  .page-kinh-nghiem-soi-keo-da-ga__content-area {
    padding: 40px 15px !important;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .page-kinh-nghiem-soi-keo-da-ga__section-title {
    font-size: 1.8rem !important;
    margin-bottom: 25px;
  }
  .page-kinh-nghiem-soi-keo-da-ga__sub-title {
    font-size: 1.3rem !important;
    margin-top: 30px;
    margin-bottom: 15px;
  }
  .page-kinh-nghiem-soi-keo-da-ga__paragraph,
  .page-kinh-nghiem-soi-keo-da-ga__list-item {
    font-size: 0.95rem !important;
  }
  .page-kinh-nghiem-soi-keo-da-ga__content-image {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    margin: 20px auto;
  }
  .page-kinh-nghiem-soi-keo-da-ga__list {
    margin-left: 20px;
  }
  .page-kinh-nghiem-soi-keo-da-ga__cta-buttons--bottom {
    margin-top: 40px;
    padding: 0;
  }

  /* FAQ Section */
  .page-kinh-nghiem-soi-keo-da-ga__faq-section {
    padding: 40px 15px !important;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .page-kinh-nghiem-soi-keo-da-ga__section-title--faq {
    font-size: 1.8rem !important;
    margin-bottom: 30px;
  }
  .page-kinh-nghiem-soi-keo-da-ga__faq-item summary {
    font-size: 1rem !important;
    padding: 15px 20px;
  }
  .page-kinh-nghiem-soi-keo-da-ga__faq-answer {
    padding: 0 20px 15px;
    font-size: 0.9rem !important;
  }
}