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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: rgb(241, 242, 246);
}

.container {
    max-width: 900px;
    margin: 0 auto;
    background-color: white;
    /* box-shadow: 0 0 20px rgba(0, 0, 0, 0.1); */
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;

}
/* p{
  font-size: 20px !important;
    margin-bottom: 25px;
    line-height: 30px !important;
    text-decoration: none;
    color: rgb(0, 0, 0) !important;
    font-weight: 400;
    font-family: 'Roboto', sans-serif;
    letter-spacing: 0em;
} */
/* Header */
.header {
display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    background-color: #ffffff;
    margin: 0 auto;
    margin-bottom: 10px;
    max-width: 900px;
}
header.header-full-in {
    background: #ffffff;
}
.logo {
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo-icon {
  font-size: 24px;
}

.logo-text {
  font-size: 18px;
  font-weight: 600;
  color: #4a90e2;
}

.header-info {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 14px;
  color: #666;
}

.category {
    font-family: Arial, 'Helvetica Neue', Helvetica, Arimo, sans-serif;
    font-weight: 700;
    color: rgb(51, 51, 51);
    font-size: 14px;
}

.advertorial {
font-family: 'Lato', sans-serif;
    color: rgb(0, 0, 0);
    font-weight: 400;
    font-size: 16px;
}

/* Main Content */
.main-content {
  padding: 40px 30px;
}

.main-title {
text-align: center;
    margin-bottom: 30px;
    color: rgba(0, 0, 0, 0.87);
    /* line-height: 50px; */
    font-size: 40px;
    font-family: Arial, 'Helvetica Neue', Helvetica, Arimo, sans-serif;
    font-weight: 700;
  line-height: 1.3;
}

.hero-image {
  text-align: center;
  margin-bottom: 20px;
}

.hero-image img {
  width: 100%;

  height: auto;
  object-fit: cover;

}

.intro-text {
font-size: 20px;
    text-decoration: none;
    color: rgb(0, 0, 0);
    font-weight: 400;
    font-family: 'Roboto', sans-serif;
  margin-bottom: 20px;

}

.content-section {
  margin-top: 20px;
}

.description {
font-size: 20px;
    text-decoration: none;
    color: rgb(0, 0, 0);
    font-weight: 400;
    font-family: 'Roboto', sans-serif;
  margin-bottom: 25px;
  line-height: 30px;

}

.section-title {
    line-height: 33px;
    font-size: 22px;
    font-weight: 700;
    color: rgb(0, 0, 0);
    font-family: 'Roboto', sans-serif;
    margin-bottom: 15px;

}

.content-text {
    font-size: 20px;
    text-decoration: none;
    color: rgb(0, 0, 0);
    font-weight: 400;
    font-family: 'Roboto', sans-serif;
  margin-bottom: 15px;
  line-height: 30px;

}

.link {
    color: #4a90e2;
    text-decoration: underline;
    font-size: 20px;
    font-weight: 700;
    font-family: 'Roboto', sans-serif;
}

.link:hover {
  color: #357abd;
}

.criteria-list {
  margin: 20px 0;
  padding-left: 20px;
}

.criteria-list li {
    margin-bottom: 8px;
    font-size: 20px;
    color: rgb(0, 0, 0);
    line-height: 30px;
    font-weight: 400;
    font-family: 'Roboto', sans-serif;
}

.process-title {
margin: 25px 0 15px 0;
    font-size: 22px;
    font-weight: 700;
    color: rgb(0, 0, 0);
    font-family: 'Roboto', sans-serif;
}

.step {
margin-bottom: 15px;
    font-size: 20px;
    color: rgb(0, 0, 0);
    font-weight: 400;
    font-family: 'Roboto', sans-serif;
}
.step strong {
    font-weight: 700;
    font-size: 20px;
    color: rgb(0, 0, 0);
    font-family: 'Roboto', sans-serif;
}
/* Age Selection */
.age-selection {
  display: flex;
  justify-content: space-between;
  margin: 30px 0;
  gap: 1px;
}
.age-group img {
    width: 100%;
}
.age-group {
flex: 1;
    text-align: center;
    transition: all 0.3s ease;
  cursor: pointer;
  transition: all 0.3s ease;
}

.age-group:hover {
  border-color: #4a90e2;
  background-color: #f8fbff;
}

.age-icons {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 15px;
}

.person-icon {
  width: 40px;
  height: 60px;
  border-radius: 20px 20px 0 0;
  position: relative;
}

.person-icon::before {
  content: '';
  position: absolute;
  top: 5px;
  left: 50%;
  transform: translateX(-50%);
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background-color: #f4c2a1;
}

.person-icon::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40px;
  border-radius: 0 0 20px 20px;
}

.person-icon.male::after {
  background-color: #4a90e2;
}

.person-icon.female::after {
  background-color: #e74c3c;
}

.age-range {
  font-size: 16px;
  font-weight: 600;
  color: #333;
}

/* CTA Button */
.cta-button {
  width: 100%;
  background: rgb(33, 186, 69);
  color: white;
  border: none;
  padding: 18px 30px;
  font-size: 18px;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  margin-top: 30px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(46, 204, 113, 0.3);
}

.cta-button:hover {
  background: linear-gradient(135deg, #229954, #27ae60);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(46, 204, 113, 0.4);
}
sup {
    font-size: .8em;
    top: 3px;
    color: rgb(0, 0, 0);
    position: relative;
    left: -3px;
    font-weight: 400;
    font-family: 'Roboto', sans-serif;
}
span.date {
    color: rgb(204, 204, 204);
    font-family: Arial, 'Helvetica Neue', Helvetica, Arimo, sans-serif;
    font-size: 14px;
    font-weight: 400;
}
/* Footer */
.footer {
background-color: rgb(241, 242, 246);
    padding: 30px 0;
    border-top: 1px solid #e0e0e0;
    font-size: 12px;
    color: #666;
    line-height: 1.5;
}

.footer p {
margin-bottom: 10px;
    font-size: 12px;
    font-family: Arial, 'Helvetica Neue', Helvetica, Arimo, sans-serif;
    color: rgb(0, 0, 0);
    font-weight: 400;

}

.disclaimer {
  margin-bottom: 5px;
}

.footer-links {
  margin-top: 15px;
  text-align: right;
}

.footer-links .link {
      color: rgb(65, 131, 196);
    font-family: 'Lato', sans-serif;
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
}
.header-info.mobile {
    display: none;
}

/* Responsive Design */
@media (max-width: 768px) {
  .container {
    margin: 0;
    box-shadow: none;
  }

  .header {
    /* flex-direction: column; */
    gap: 10px;
    padding: 15px 20px;
  }

  .main-content {
    padding: 30px 20px;
  }

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

  .age-selection {
    flex-direction: column;
    gap: 15px;
  }

  .age-group {
    padding: 15px;
  }

  .footer {
    padding: 20px;
  }
}
@media (max-width: 600px) {
.header-info {
    display: none;
}
.header-info.mobile {
    text-align: center;
    display: block !important;
    padding-bottom: 12px;
}
header.header-full-in {
    background: #ffffff;
    margin-bottom: 10px;
}
.header {

        padding: 15px 20px 0;
    }
.logo img{
  margin-top: -12px;
}
}

@media (max-width: 480px) {
  .main-title {
    font-size: 20px;
  }

  .hero-image img {
    height: 200px;
  }

  .age-icons {
    gap: 5px;
  }

  .person-icon {
    width: 30px;
    height: 45px;
  }

  .person-icon::before {
    width: 12px;
    height: 12px;
  }

  .person-icon::after {
    height: 30px;
  }
}
