/* Layout & Container */
body {
  font-family: 'Inter', Helvetica, sans-serif;
  background: #f5f5f5;
  overflow-x: hidden;
}

/* Header */
.header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 50px;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1728px;
  margin: 0 auto;
}

.logo {
  height: 84px;
  object-fit: cover;
  transition: filter 0.3s ease;
  filter: brightness(0) saturate(100%) invert(64%) sepia(51%) saturate(458%) hue-rotate(162deg) brightness(95%) contrast(89%);
}

/* Logo hover effect - #5dade2 color */
.header a:hover .logo {
  filter: brightness(0) saturate(100%) invert(64%) sepia(51%) saturate(458%) hue-rotate(162deg) brightness(95%) contrast(89%);
}

.nav {
  display: flex;
  gap: 34px;
}

.nav-link {
  font-size: 24px;
  color: #FFFFFF;
  text-decoration: none;
  transition: color 0.3s;
}

.nav-link.active {
  font-weight: 700;
  color: #5dade2;
}

.nav-link:hover {
  color: #5dade2;
}

.header-actions {
  position: relative;
  display: flex;
  align-items: center;
  gap: 35px;
  overflow: visible;
}

.language-select {
  background: transparent;
  border: none;
  color: white;
  font-size: 24px;
  cursor: pointer;
  font-family: 'Inter', Helvetica, sans-serif;
}

.language-select option {
  background: #333;
  color: white;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 38px;
  border-radius: 25px;
  font-size: 20px;
  text-decoration: none;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
  font-family: 'Inter', Helvetica, sans-serif;
}

.btn-primary {
  background: #5dade2;
  color: white;
}

.btn-primary:hover {
  background: #4a9dd1;
}

.btn-hero {
  background: #5dade2;
  color: white;
  padding: 13px 50px;
  font-size: 20px;
}

.btn-hero:hover {
  background: #4a9dd1;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(93, 173, 226, 0.3);
}

.btn-outline {
  background: transparent;
  color: #5dade2;
  border: 1px solid #5dade2;
}

.btn-outline:hover {
  background: #5dade2;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(93, 173, 226, 0.3);
}

/* Button text responsive */
.btn-text-short {
  display: none;
}

.btn-text-full {
  display: inline;
}

/* Hero Section */
.hero {
  position: relative;
  height: 600px;
  background: url('https://c.animaapp.com/mgnyeezlvlbNGV/img/image-5.png') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-funnel {
  position: relative;
  height: 969px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-content {
  text-align: center;
  color: white;
  z-index: 10;
  margin-top: 70px;
}

.hero-title {
  font-size: 96px;
  font-weight: 700;
  margin: 0 0 20px 0;
}

.hero-subtitle {
  font-size: 24px;
  margin: 0 0 40px 0;
}

.hero-reviews {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
}

.review-avatars {
  display: flex;
  margin-right: 20px;
}

.review-avatars img {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 1px solid white;
  margin-left: -15px;
  object-fit: cover;
}

.review-avatars img:first-child {
  margin-left: 0;
}

.review-info {
  display: flex;
  align-items: center;
  gap: 10px;
}

.stars {
  display: flex;
  gap: 4px;
}

.stars img {
  width: 19px;
  height: 18px;
}

.rating {
  font-size: 24px;
  font-weight: 400;
}

.review-count {
  font-size: 20px;
  margin: 0;
}

/* About Section */
.about-section {
  background: linear-gradient(271deg, rgba(234, 247, 255, 0.8) 50%, rgba(190, 227, 248, 1) 100%);
  padding: 80px 40px 40px 40px;
  overflow: hidden;
}

.about-content {
  display: flex;
  gap: 100px;
  max-width: 1600px;
  margin: 0 auto;
  align-items: flex-start;
}

.about-text {
  flex: 1;
  max-width: 1009px;
}

.section-label {
  font-size: 20px;
  color: black;
  display: block;
  margin-bottom: 22px;
}

.divider {
  width: 100%;
  max-width: 841px;
  height: 1px;
  background: #ccc;
  margin-bottom: 22px;
}

.section-title {
  font-size: 64px;
  font-weight: 700;
  color: #262626;
  margin: 0 0 22px 0;
}

.about-description {
  font-size: 20px;
  line-height: 28.3px;
  color: black;
  margin-bottom: 40px;
}

.about-features {
  display: flex;
  gap: 65px;
  margin-bottom: 40px;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}

.feature-item img {
  width: 42px;
  height: 42px;
}

.feature-item p {
  font-size: 16px;
  margin: 0;
}

.feature-item strong {
  font-weight: 700;
}

.feature-item span {
  font-size: 12px;
}

.about-cta {
  margin-top: 40px;
}

.about-cta .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 250px;
}

.about-image {
  position: relative;
  flex-shrink: 0;
  margin-top: -170px;
}

.about-image img {
  width: 100%;
  max-width: 440px;
  height: auto;
  aspect-ratio: 440 / 604;
  object-fit: cover;
}

.experience-badge {
    position: absolute;
    bottom: 145px;
    left: 235px;
    width: 135px;
    height: 130px;
    background: #e2ad5d;
    border-radius: 21.66px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
}

.experience-number {
  font-size: 34.7px;
  font-weight: 700;
}

.experience-text {
  font-size: 23.8px;
  text-align: center;
}

/* Courses Section */
.courses-section {
  padding: 100px 80px;
  background: white;
}

.section-title-center {
  font-size: 64px;
  font-weight: 700;
  color: #262626;
  text-align: center;
  margin: 0 0 30px 0;
}

.section-subtitle {
  font-size: 20px;
  text-align: center;
  color: black;
  max-width: 714px;
  margin: 0 auto 60px;
}

.courses-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 43px;
  max-width: 1580px;
  margin: 0 auto;
}

.course-card {
  background: #eaf7ff;
  border-radius: 30px;
  overflow: hidden;
}

.course-image {
  position: relative;
  width: 100%;
  height: 552px;
}

.course-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.course-badges {
  position: absolute;
  top: 17px;
  right: 17px;
  display: flex;
  gap: 18px;
}

.badge {
  background: #bee3f8;
  padding: 11px 29px;
  border-radius: 23px;
  font-size: 20px;
  color: #262626;
}

.course-content {
  padding: 49px 21px;
}

.course-title {
  font-size: 36px;
  font-weight: 700;
  color: black;
  margin: 0 0 18px 0;
}

.course-description {
  font-size: 20px;
  color: black;
  margin: 0 0 18px 0;
}

.course-modules {
  margin-bottom: 49px;
}

.module {
  padding: 0;
  margin: 0;
}

.module summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  cursor: pointer;
  list-style: none;
  font-size: 24px;
  font-weight: 700;
  color: black;
}

.module summary::-webkit-details-marker {
  display: none;
}

.toggle-icon {
  width: 48px;
  height: 46px;
  border: 1px solid #7ec8e3;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #7ec8e3;
}

.module p {
  font-size: 20px;
  color: black;
  margin: 8px 0 0 0;
  padding-bottom: 12px;
}

.module-divider {
  height: 1px;
  background: #ddd;
  margin: 0;
}

.course-actions {
  display: flex;
  gap: 20px;
  justify-content: space-between;
}

.course-actions .btn {
  flex: 1;
  max-width: 203px;
}

/* Treatments Section */
.treatments-section {
  background: linear-gradient(138deg, rgba(234, 247, 255, 1) 0%, rgba(167, 211, 243, 1) 100%);
  padding: 100px 80px;
}

.treatments-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-subtitle-large {
  font-size: 24px;
  color: black;
  text-align: center;
  margin: 34px auto 0;
  max-width: 1327px;
}

.treatment-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 47px;
  max-width: 1400px;
  margin: 0 auto 80px;
}

.treatment-card {
  background: white;
  border-radius: 20px;
  padding: 40px;
  text-align: center;
  box-shadow: 0px 4px 16.6px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

/* Different hover colors for each treatment card */
.treatment-card:nth-child(1):hover {
  background-color: #C1E6F9;
  transform: translateY(-8px);
  box-shadow: 0px 8px 30px rgba(0, 0, 0, 0.2);
}

.treatment-card:nth-child(2):hover {
  background-color: #FFDBBC;
  transform: translateY(-8px);
  box-shadow: 0px 8px 30px rgba(0, 0, 0, 0.2);
}

.treatment-card:nth-child(3):hover {
  background-color: #D5EDC4;
  transform: translateY(-8px);
  box-shadow: 0px 8px 30px rgba(0, 0, 0, 0.2);
}

.treatment-card img {
  width: 48px;
  height: 42px;
  margin: 0 auto 17px;
  display: block;
}

.treatment-card h3 {
  font-size: 34.8px;
  font-weight: 700;
  color: black;
  margin: 0 0 17px 0;
}

.treatment-card p {
  font-size: 20.9px;
  color: black;
  margin: 0;
  line-height: 1.5;
}

.treatments-details {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  max-width: 1496px;
  margin: 0 auto;
}

.conditions-list {
  background: white;
  border-radius: 30px;
  padding: 46px 36px;
}

.conditions-list h3 {
  font-size: 34.8px;
  font-weight: 700;
  color: black;
  margin: 0 0 46px 0;
}

.conditions-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 41px 117px;
  margin-bottom: 40px;
}

.condition-item {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.condition-item img {
  width: 28px;
  height: 29px;
  flex-shrink: 0;
  margin-top: 2px;
}

.condition-item p {
  font-size: 20.9px;
  color: black;
  margin: 0;
}

.treatment-note {
  background: #eaf7ff;
  border-radius: 30px;
  padding: 30px;
  text-align: center;
}

.treatment-note p {
  font-size: 20.9px;
  color: black;
  margin: 0;
}

.treatment-note strong {
  font-weight: 700;
}

.cta-card {
  background: #5dade2;
  border-radius: 30px;
  padding: 50px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: white;
}

.cta-card img:first-child {
  width: 97.55px;
  height: 97.55px;
  margin-bottom: 22px;
}

.cta-card h3 {
  font-size: 34.8px;
  font-weight: 700;
  margin: 0 0 22px 0;
}

.cta-card > p {
  font-size: 20.9px;
  line-height: 27.8px;
  margin: 0 0 35px 0;
}

.btn-cta {
  background: white;
  color: #5dade2;
  font-weight: 700;
  font-size: 27.9px;
  padding: 20px 50px;
  border-radius: 35px;
  gap: 14px;
  margin-bottom: 35px;
  width: 100%;
  max-width: 370px;
  height: 70px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s;
}

.btn-cta:hover {
  background: #f0f0f0;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.btn-cta img,
.btn-cta svg {
  width: 25px !important;
  height: 25px !important;
  margin: 0 !important;
  flex-shrink: 0;
}

.btn-cta svg {
  fill: currentColor;
}

.contact-info {
  margin-bottom: 35px;
}

.phone-number {
  font-size: 27.9px;
  font-weight: 700;
  color: white;
  text-decoration: none;
  display: block;
  margin-bottom: 5px;
  text-decoration: underline;
}

.availability {
  font-size: 20.9px;
  line-height: 27.8px;
  margin: 0;
}

.why-choose h4 {
  font-size: 27.9px;
  font-weight: 700;
  margin: 0 0 15px 0;
}

.why-choose ul {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 20.9px;
  line-height: 27.8px;
}

/* Testimonials Section */
.testimonials-section {
  padding: 100px 80px;
  background: white;
}

.testimonials-slider {
  position: relative;
  width: 100%;
  max-width: 1112px;
  margin: 31px auto 61px;
  overflow: hidden;
}

.testimonials-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
  width: 100%;
}

.testimonial-card {
  background: #eaf7ff;
  border-radius: 30px;
  padding: 60px 40px;
  width: 100%;
  min-width: 100%;
  max-width: 100%;
  text-align: center;
  flex-shrink: 0;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.quote-icon {
  width: 90.34px;
  height: 71.22px;
  margin-bottom: 40px;
  flex-shrink: 0;
}

.stars-large {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-bottom: 40px;
  flex-shrink: 0;
}

.stars-large img {
  width: 38px;
  height: 36px;
  flex-shrink: 0;
}

.testimonial-card blockquote {
  font-size: 24px;
  color: #939393;
  margin: 0 0 40px 0;
  line-height: 1.6;
  max-width: 900px;
  text-align: center;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-shrink: 0;
}

.testimonial-author img {
  width: 97px;
  height: 97px;
  border-radius: 50%;
  border: 1.79px solid white;
  object-fit: cover;
  flex-shrink: 0;
}

.testimonial-author > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
}

.author-name {
  font-size: 24px;
  font-weight: 700;
  color: black;
  margin: 0;
  line-height: 1.2;
}

.author-handle {
  font-size: 24px;
  color: #939393;
  margin: 0;
  line-height: 1.2;
}

.testimonial-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 35px;
  margin-bottom: 40px;
}

.testimonials-footer {
  text-align: center;
}

.testimonials-footer .btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.testimonials-footer svg {
  flex-shrink: 0;
}

.nav-btn {
  width: 76px;
  height: 76px;
  background: white;
  border: 2.38px solid #d9d9d9;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.05);
  position: relative;
  transition: all 0.3s ease;
}

.nav-btn:hover {
  background: #f5f5f5;
  transform: scale(1.05);
}

.nav-btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 12px;
  height: 12px;
  border-top: 3px solid #5dade2;
  border-right: 3px solid #5dade2;
}

.nav-btn-prev::before {
  transform: translate(-40%, -50%) rotate(-135deg);
}

.nav-btn-next::before {
  transform: translate(-60%, -50%) rotate(45deg);
}

.dots {
  display: flex;
  gap: 14px;
}

.dot {
  width: 19px;
  height: 19px;
  background: #d3d3d3;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.dot.active {
  width: 55px;
  height: 19px;
  background: #d3d3d3;
  border-radius: 9.5px;
}

.dot.active::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background: #7ec8e3;
  border-radius: 9.5px;
  animation: dotProgress 5s linear forwards;
}

@keyframes dotProgress {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}

/* Blog Section */
.blog-section {
  padding: 50px 83px 100px 83px;
  background: white;
}

.blog-header {
  display: flex;
  gap: 58px;
  max-width: 1600px;
  margin: 0 auto;
}

.blog-intro {
  flex-shrink: 0;
  width: 100%;
  max-width: 406px;
}

.blog-intro h2 {
  font-size: 64px;
  font-weight: 700;
  color: #262626;
  margin: 0 0 20px 0;
}

.blog-intro p {
  font-size: 20px;
  color: black;
  margin: 0 0 40px 0;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 26px;
  flex: 1;
}

.blog-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
  transition: transform 0.3s ease;
}

.blog-card-link:hover {
  transform: translateY(-5px);
}

.blog-card {
  display: flex;
  flex-direction: column;
  cursor: pointer;
}

.blog-image {
  position: relative;
  width: 100%;
  height: 294.3px;
  border-radius: 15px;
  overflow: hidden;
  margin-bottom: 20px;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-tags {
  position: absolute;
  top: 9px;
  right: 9px;
  display: flex;
  gap: 7px;
}

.tag {
  background: #bee3f8;
  padding: 6px 14px;
  border-radius: 12.26px;
  font-size: 10.7px;
  color: #262626;
}

.blog-card time {
  font-size: 16px;
  color: black;
  margin-bottom: 10px;
  display: block;
}

.blog-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: black;
  margin: 0;
  line-height: 1.4;
}

/* FAQ Section */
.faq-section {
  padding: 100px 80px;
  background: white;
}

.faq-list {
  max-width: 1555px;
  margin: 60px auto 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.faq-item {
  background: white;
  border-radius: 20px;
  padding: 29px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  list-style: none;
  font-size: 28px;
  font-weight: 700;
  color: #262626;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-icon {
  width: 48px;
  height: 46px;
  border: 1px solid #7ec8e3;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: #7ec8e3;
  flex-shrink: 0;
}

.faq-item p {
  font-size: 20px;
  color: #262626;
  margin: 20px 0 0 0;
  line-height: 1.5;
}

.faq-item[open] .faq-icon {
  content: '−';
}

/* Newsletter Section */
.newsletter-section {
  background: #7ec8e3;
  padding: 80px;
  text-align: center;
}

.newsletter-section h2 {
  font-size: 60.8px;
  font-weight: 700;
  color: white;
  margin: 0 0 39px 0;
}

.newsletter-section > p:first-of-type {
  font-size: 24px;
  color: white;
  line-height: 31.9px;
  margin: 0 0 39px 0;
}

.newsletter-form {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-bottom: 20px;
}

.newsletter-form input {
  width: 100%;
  max-width: 349px;
  height: 56px;
  background: white;
  border: none;
  border-radius: 27.93px;
  padding: 0 20px;
  font-size: 20.9px;
  text-align: center;
  font-family: 'Inter', Helvetica, sans-serif;
}

.newsletter-form input::placeholder {
  color: #cbcbcb;
}

.btn-newsletter {
  width: 171px;
  height: 56px;
  background: white;
  color: #7ec8e3;
  font-weight: 700;
  font-size: 20.9px;
  border-radius: 27.93px;
  transition: all 0.3s;
  cursor: pointer;
  border: none;
}

.btn-newsletter:hover {
  background: #f0f0f0;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.newsletter-note {
  font-size: 20.9px;
  color: white;
  line-height: 27.8px;
  margin: 0;
}

/* Footer */
.footer {
  background: #5dade2;
  padding: 58px 80px;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 1fr 1.2fr 1fr;
  gap: 60px;
  max-width: 1600px;
  margin: 0 auto;
  color: white;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-brand img {
  height: 84px;
  margin-bottom: 10px;
}

.footer-brand h3 {
  font-size: 40px;
  font-weight: 400;
  margin: 0;
}

.footer-column h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 30px 0;
}

.footer-column nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-column a {
  color: white;
  text-decoration: none;
  font-size: 20px;
  font-weight: 400;
  transition: opacity 0.3s;
}

.footer-column a:hover {
  opacity: 0.8;
}

.footer-column address {
  font-style: normal;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-column address p {
  font-size: 20px;
  font-weight: 400;
  margin: 0;
  line-height: 1.5;
}

.hours {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 20px;
  font-weight: 400;
}

/* Responsive adjustments */
@media (max-width: 1400px) {
  .courses-grid {
    grid-template-columns: 1fr;
  }
  
  .treatments-details {
    grid-template-columns: 1fr;
  }
  
  .blog-header {
    flex-direction: column;
  }
  
  .blog-grid {
    grid-template-columns: 1fr;
  }
}