* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans",
    "Helvetica Neue", sans-serif;
  line-height: 1.6;
  width: 100%;
  background-color: #fffbd3;
  color: #333;
  overflow-x: hidden;
}

/* Header styles */
.cg-header {
  position: relative;
  height: 610px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  /* background-image: url("/static/images/Frame\ 436.png"); */
  background-size: cover;
  background-position: center;
  overflow: hidden;
  width: 100%;
}

.cg-header__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.cg-header__content {
  position: relative;
  z-index: 2;
  padding: 0 20px;
  width: 100%;
  max-width: 1200px;
}

.cg-header__title {
  font-size: 64px;
  margin-bottom: 10px;
  font-weight: 600;
  color: #ffffff;
}

.cg-header__subtitle {
  font-size: 24px;
  font-weight: 400;
  color: #ffffff;
}

/* Main container */
.teen-container {
  width: 100%;
  margin: 0 auto;
  padding: 60px;
  background-color: #fffbd3;
  font-family: Arial, sans-serif;
}

/* Header section */
.teen-header {
  text-align: center;
  margin-bottom: 50px;
}

.teen-title {
  font-size: 48px;
  margin-bottom: 20px;
  color: #000;
  font-weight: 700;
}

.teen-subtitle {
  font-size: 28px;
  color: #444;
  max-width: 1240px;
  margin: 0 auto;
  line-height: 1.6;
  text-align: center;
}

/* Section styles */
.teen-section {
  margin-bottom: 40px;
  background-color: #ffffff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.teen-section-title {
  font-size: 32px;
  margin-bottom: 20px;
  color: #000;
  font-weight: 700;
}

.teen-subsection-title {
  font-size: 24px;
  margin-top: 20px;
  margin-bottom: 15px;
  color: #000;
  font-weight: 600;
}

.teen-section-content {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 15px;
  color: #444;
}

/* List styles */
.teen-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 20px;
}

.teen-list li {
  font-size: 18px;
  margin-bottom: 12px;
  padding-left: 25px;
  position: relative;
  line-height: 1.7;
  color: #333;
}

.teen-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #2c6b3f;
  font-weight: bold;
}

.teen-sublist {
  list-style: none;
  margin-top: 10px;
  margin-bottom: 10px;
  padding-left: 20px;
}

.teen-sublist li {
  font-size: 16px;
  margin-bottom: 8px;
  padding-left: 20px;
  position: relative;
  line-height: 1.6;
  color: #444;
}

.teen-sublist li::before {
  content: "◦";
  position: absolute;
  left: 0;
  color: #2c6b3f;
}

/* Ordered list styles */
.teen-ordered-list {
  list-style: decimal;
  padding-left: 30px;
  margin-bottom: 20px;
}

.teen-ordered-list li {
  font-size: 18px;
  margin-bottom: 12px;
  line-height: 1.7;
  color: #333;
}

/* Table styles */
.teen-table-wrapper {
  overflow-x: auto;
  margin: 20px 0;
  border-radius: 8px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
}

.teen-table {
  width: 100%;
  border-collapse: collapse;
  background-color: #fff;
}

.teen-table thead {
  background-color: #2c6b3f;
  color: white;
}

.teen-table th {
  padding: 15px;
  text-align: left;
  font-weight: 600;
  font-size: 16px;
}

.teen-table td {
  padding: 12px 15px;
  border-bottom: 1px solid #e0e0e0;
  font-size: 16px;
  color: #333;
}

.teen-table tbody tr:hover {
  background-color: #f9f9f9;
}

/* Contact section */
.teen-contact {
  text-align: center;
  margin-top: 60px;
  background-color: #fffbd3;
  padding: 40px;
  border-radius: 8px;
}

.teen-contact-title {
  font-size: 48px;
  margin-bottom: 20px;
  color: #000;
  font-weight: 700;
}

.teen-contact-text {
  font-size: 24px;
  margin-bottom: 30px;
  color: #444;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.teen-contact-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.teen-contact-button {
  background-color: #2c6b3f;
  color: white;
  border-radius: 8px;
  padding: 25px 30px;
  flex: 1;
  min-width: 250px;
  text-align: center;
  transition: background-color 0.3s ease;
}

.teen-contact-button:hover {
  background-color: #1f4d2b;
}

.teen-contact-button-title {
  font-weight: bold;
  margin-bottom: 10px;
  font-size: 18px;
}

.teen-contact-button-text {
  font-size: 16px;
  line-height: 1.5;
}

.teen-contact-button-text a {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s ease;
}

.teen-contact-button-text a:hover {
  opacity: 0.9;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .teen-container {
    padding: 50px 40px;
  }

  .cg-header__title {
    font-size: 50px;
  }

  .cg-header__subtitle {
    font-size: 20px;
  }

  .teen-title {
    font-size: 42px;
  }

  .teen-subtitle {
    font-size: 24px;
  }

  .teen-section {
    padding: 25px;
  }

  .teen-section-title {
    font-size: 28px;
  }

  .teen-section-content {
    font-size: 16px;
  }

  .teen-list li,
  .teen-ordered-list li {
    font-size: 16px;
  }

  .teen-table th,
  .teen-table td {
    padding: 12px;
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  .teen-container {
    padding: 40px 25px;
  }

  .cg-header {
    height: 450px;
  }

  .cg-header__title {
    font-size: 40px;
  }

  .cg-header__subtitle {
    font-size: 18px;
  }

  .teen-title {
    font-size: 36px;
  }

  .teen-subtitle {
    font-size: 20px;
  }

  .teen-section {
    padding: 20px;
    margin-bottom: 30px;
  }

  .teen-section-title {
    font-size: 24px;
    margin-bottom: 15px;
  }

  .teen-subsection-title {
    font-size: 20px;
  }

  .teen-section-content {
    font-size: 16px;
    margin-bottom: 12px;
  }

  .teen-list li {
    font-size: 15px;
    margin-bottom: 10px;
    padding-left: 22px;
  }

  .teen-sublist li {
    font-size: 14px;
  }

  .teen-ordered-list li {
    font-size: 15px;
  }

  .teen-contact-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .teen-contact-button {
    min-width: 100%;
  }

  .teen-contact-title {
    font-size: 36px;
  }

  .teen-contact-text {
    font-size: 18px;
  }

  .teen-table-wrapper {
    font-size: 14px;
  }

  .teen-table th,
  .teen-table td {
    padding: 10px;
    font-size: 13px;
  }
}

@media (max-width: 576px) {
  .teen-container {
    padding: 30px 15px;
  }

  .cg-header {
    height: 380px;
  }

  .cg-header__title {
    font-size: 32px;
  }

  .cg-header__subtitle {
    font-size: 16px;
  }

  .teen-title {
    font-size: 28px;
    margin-bottom: 15px;
  }

  .teen-subtitle {
    font-size: 16px;
  }

  .teen-section {
    padding: 18px;
    margin-bottom: 25px;
  }

  .teen-section-title {
    font-size: 22px;
    margin-bottom: 12px;
  }

  .teen-subsection-title {
    font-size: 18px;
    margin-top: 15px;
    margin-bottom: 12px;
  }

  .teen-section-content {
    font-size: 15px;
    margin-bottom: 10px;
  }

  .teen-list li {
    font-size: 14px;
    margin-bottom: 8px;
    padding-left: 20px;
  }

  .teen-sublist li {
    font-size: 13px;
    margin-bottom: 6px;
  }

  .teen-ordered-list li {
    font-size: 14px;
    margin-bottom: 8px;
  }

  .teen-contact-title {
    font-size: 28px;
    margin-bottom: 15px;
  }

  .teen-contact-text {
    font-size: 16px;
    margin-bottom: 20px;
  }

  .teen-contact-button {
    padding: 20px 20px;
    min-width: 100%;
  }

  .teen-contact-button-title {
    font-size: 16px;
  }

  .teen-contact-button-text {
    font-size: 14px;
  }

  .teen-table-wrapper {
    font-size: 12px;
  }

  .teen-table th,
  .teen-table td {
    padding: 8px;
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .teen-container {
    padding: 20px 12px;
  }

  .cg-header {
    height: 320px;
  }

  .cg-header__title {
    font-size: 28px;
  }

  .cg-header__subtitle {
    font-size: 14px;
  }

  .teen-title {
    font-size: 24px;
  }

  .teen-subtitle {
    font-size: 14px;
  }

  .teen-section {
    padding: 15px;
    margin-bottom: 20px;
  }

  .teen-section-title {
    font-size: 20px;
  }

  .teen-subsection-title {
    font-size: 16px;
  }

  .teen-section-content {
    font-size: 14px;
  }

  .teen-list li {
    font-size: 13px;
    padding-left: 18px;
  }

  .teen-contact-title {
    font-size: 24px;
  }

  .teen-contact-text {
    font-size: 14px;
  }

  .teen-contact-button {
    padding: 18px 15px;
  }

  .teen-contact-button-title {
    font-size: 14px;
  }

  .teen-contact-button-text {
    font-size: 12px;
  }

  .teen-table {
    font-size: 11px;
  }

  .teen-table th,
  .teen-table td {
    padding: 6px;
  }
}

@media (max-width: 380px) {
  .teen-container {
    padding: 15px 10px;
  }

  .cg-header {
    height: 280px;
  }

  .cg-header__title {
    font-size: 24px;
  }

  .cg-header__subtitle {
    font-size: 12px;
  }

  .teen-title {
    font-size: 20px;
  }

  .teen-subtitle {
    font-size: 12px;
  }

  .teen-section-title {
    font-size: 18px;
  }

  .teen-list li {
    font-size: 12px;
  }

  .teen-contact-title {
    font-size: 20px;
  }

  .teen-contact-text {
    font-size: 12px;
  }
}
