/* ===================================
   RESET & BASE STYLES
   =================================== */
html {
  scroll-behavior: smooth;
}

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

body {
  font-family: 'Marion Standard', 'Roboto', sans-serif !important;
  line-height: 1.45;
  color: #000;
  overflow-x: hidden;
}

p,
li,
a,
button,
span,
div,
.section-text,
.intro-text,
.type-info p,
.factors-text p,
.factors-list li,
.adult-card p,
.myth-text,
.truth-side p,
.advice-content-text p,
.tip-card p,
.tip-highlight,
.promo-text p,
.footer-column p,
.footer-column ul,
.footer-column li,
.acne-subtitle,
.section-header p,
.type-card p,
.nav-links a,
.cta-button,
.promo-cta,
.tip-badge,
.hashtag,
.divider {
  font-family: 'Marion Standard', 'Roboto', sans-serif !important;
}

h1,
h2,
h3,
h4,
h5,
h6,
.acne-main-title,
.section-title,
.type-info h3,
.factors-text h2,
.adult-card h3,
.myth-side h3,
.truth-side h3,
.advice-text h2,
.tip-card h3,
.promo-text h2,
.footer-column h3 {
  font-family: 'GBKleftis Erotas', 'Playfair Display', serif;
  font-weight: 400;
}

.landing-page {
  width: 100%;
  overflow-x: hidden;
}

/* ===================================
   NAVIGATION
   =================================== */
.navigation-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  padding: 1rem 0;
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 5vw, 4rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.logo {
  height: 70px;
  width: auto;
  display: flex;
  align-items: center;
}

.logo img {
  height: 100%;
  width: auto;
  object-fit: contain;
}

.social-icons {
  display: flex;
  gap: 1rem;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #E5E7EB;
  transition: all 0.3s ease;
}

.social-icons a img {
  width: 20px;
  height: 20px;
  display: block;
}

.social-icons a:hover {
  background-color: #F3F4F6;
  border-color: #D1D5DB;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .nav-container {
    padding: 0 1rem;
    gap: 0.75rem;
  }

  .logo {
    flex: 1;
    height: 50px;
    justify-content: flex-start;
  }

  .logo img {
    height: 100%;
    width: auto;
    object-fit: contain;
  }

  .nav-container .cta-button {
    flex: 1;
    padding: 0.5rem 0.25rem;
    font-size: 0.75rem;
    line-height: 1.2;
    white-space: normal;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    height: auto;
    min-height: 44px;
  }
}

.nav-links {
  display: none;
  gap: 2rem;
}

.nav-links a {
  color: #003366;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #214391;
}

.cta-button {
  background: #214391;
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.3s;
  display: inline-block;
  text-decoration: none;
}

.cta-button:hover {
  background: #1a3470;
}

@media (min-width: 768px) {
  .nav-links {
    display: flex;
  }
}

/* ===================================
   HERO CAROUSEL
   =================================== */

.hero-carousel {
  margin-top: 0;

  position: relative;
  overflow: hidden;
  background: white;
}

.carousel-track {
  position: relative;
  min-height: 850px;

}

.carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s ease, visibility 0.6s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-slide.active {
  opacity: 1;
  visibility: visible;
  position: relative;
}

.carousel-slide.active {
  position: absolute;
  z-index: 2;
}



.hero-slide-yellow {
  background-color: #FFF200;
}

.hero-slide-blue {
  background-color: #74CAED;
}

.hero-slide-pink {
  background-color: #F1617F;
}

.hero-content-wrapper {
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;

  padding: 140px 2rem 6rem;

  height: 100%;
  justify-content: center;
  align-items: center;
}


.hero-text-content {

  display: contents;
}




.hero-text-svg {
  width: 100%;
  max-width: 600px;
  height: auto;
  display: block;
  margin: 4rem auto 3rem;

  order: 1;

}

.hero-cta {
  display: inline-block;
  background: white;
  color: black;
  font-family: 'GBKleftis Erotas', serif;
  font-size: 1rem;
  font-weight: 400;
  padding: 1rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s;
  order: 3;

  margin: 2rem auto 4rem;

}

.hero-cta:hover {
  transform: translateY(-2px);
}


.hero-person-image {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-end;

  line-height: 0;
  order: 2;

  margin: 2rem auto;

}

.hero-person-image img {
  max-height: 300px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}


@media (min-width: 1024px) {
  .hero-content-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    grid-template-rows: 1fr;
    align-items: center;
    padding: 0 clamp(2rem, 5vw, 4rem);
    height: 100%;
  }

  .carousel-track {
    height: 755px;
  }

  .hero-text-content {

    display: block;
    width: 100%;
    max-width: none;
    padding-bottom: 0;
    text-align: left;
  }

  .hero-text-svg {
    order: unset;
    margin: 0 0 2rem 0;

  }

  .hero-cta {
    order: unset;
    margin: 0;

  }

  .hero-person-image {
    justify-content: flex-end;
    height: 100%;
    align-items: flex-end;
    order: unset;

  }

  .hero-person-image img {
    max-height: 90%;
    max-width: 120%;
    margin-right: -10%;
  }
}


.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.4);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 2rem;
  font-weight: 300;
  color: white;
  cursor: pointer;
  z-index: 20;
  display: none;
  align-items: center;
  justify-content: center;
  transition: background 0.3s, transform 0.3s;
}

.carousel-arrow:hover {
  background: white;
  color: black;
}

.carousel-arrow.prev {
  left: 2rem;
}

.carousel-arrow.next {
  right: 2rem;
}

@media (min-width: 768px) {
  .carousel-arrow {
    display: flex;
  }
}


.carousel-dots {
  position: absolute;
  bottom: 1.5rem;

  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 1rem;
  z-index: 50;
  pointer-events: auto;
}

.carousel-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: 2px solid white;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.carousel-dot:hover {
  background: rgba(255, 255, 255, 0.8);
  transform: scale(1.1);
}

.carousel-dot.active {
  background: white;
  border-color: white;
  transform: scale(1.25);
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

@media (min-width: 768px) {
  .carousel-arrow {
    display: flex;
  }

  .carousel-arrow.prev {
    left: 2rem;
  }

  .carousel-arrow.next {
    right: 2rem;
  }
}


/* ===================================
   ACNE HEADER SECTION - LIGHT GRAY/WHITE
   =================================== */
.acne-header-section {
  background: #EAE7E7;
  padding: clamp(3rem, 8vw, 6rem) clamp(1rem, 5vw, 4rem) clamp(3rem, 6vw, 5rem);
  position: relative;
}

.myths-slides-container {

  display: grid;
  grid-template-areas: "stack";
  width: 100%;
  max-width: 1200px;

  margin: 0 auto;
}


.myths-carousel {
  position: relative;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}

.acne-header-container {
  max-width: 1400px;
  margin: 0 auto;
  text-align: center;
}

.acne-main-title {
  font-family: 'GBKleftis Erotas', 'Playfair Display', serif;
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 400;
  color: #000;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.acne-subtitle {
  font-family: 'Marion Standard', 'Roboto', sans-serif !important;
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  color: #000;
  line-height: 1.4;
  margin-bottom: 0;
}

/* ===================================
   WHAT IS ACNE CONTENT SECTION - BEIGE
   =================================== */
.what-is-acne-content {
  background: #F0EDED;
  padding: 0;
  position: relative;
  overflow: hidden;
  scroll-margin-top: 100px;
}

.what-is-acne-container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  position: relative;
  min-height: auto;

  display: flex;
  flex-direction: column;
}


.acne-content-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  flex: 1;
  position: relative;
  padding: 0 clamp(1rem, 5vw, 4rem);
  gap: 2rem;
}

.acne-image-side {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  order: 2;
  margin-bottom: -1px;
}

.acne-girl-image {
  width: 100%;
  max-width: 400px;
  height: auto;
  object-fit: cover;
  object-position: bottom;
  display: block;
  margin: 0 auto;
}

.acne-text-side {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;

  gap: 2rem;
  order: 1;
  padding: 2rem 1rem 0;
  max-width: 1400px;
  margin: 0 auto;
}

.intro-section {
  margin-bottom: 2rem;
}

.intro-text {
  font-family: 'Marion Standard', 'Roboto', sans-serif !important;
  font-size: 32px;
  color: #003366;
  line-height: 39px;
  font-style: italic;
}

.text-sections {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.text-section {
  margin-bottom: 1.5rem;
}

.text-section .section-title {
  font-family: 'GBKleftis Erotas', 'Playfair Display', serif;
  font-size: 30px;

  font-weight: 400;
  color: #000;
  margin-bottom: 0.5rem;

  line-height: 1.1;
  text-align: left;

}

.section-text {
  font-family: 'Marion Standard', 'Roboto', sans-serif !important;
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: #000;
  line-height: 1.4;
  margin-bottom: 1rem;
}

.tip-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tip-list li {
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  color: #003366;
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.tip-list li:last-child {
  margin-bottom: 0;
}

.section-text:last-child {
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .acne-content-wrapper {
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 4rem;
    padding-bottom: 0;
    align-items: flex-start;
  }

  .acne-image-side {
    order: 1;
    align-items: flex-end;
    height: 100%;
    min-height: auto;

  }

  .acne-girl-image {
    max-width: 100%;
    height: auto;
    max-height: 600px;
  }

  .acne-text-side {
    order: 2;
    padding: 2rem 0 0;

    justify-content: flex-start;
  }
}

@media (min-width: 1024px) {
  .acne-content-wrapper {
    gap: 6rem;
  }

  .acne-image-side {
    min-height: auto;
  }

  .acne-girl-image {
    max-height: 700px;
  }
}

.section-container {
  max-width: 1400px;
  margin: 0 auto;
}

/* ===================================
   TYPES OF ACNE SECTION - BLUE
   =================================== */
.types-of-acne {
  background: #88D6F6;
  padding: clamp(3rem, 8vw, 6rem) clamp(1rem, 5vw, 4rem);
  scroll-margin-top: 100px;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  font-family: 'GBKleftis Erotas', 'Playfair Display', serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 400;
  margin-bottom: 1rem;
  color: #000;
}

.section-header p {
  font-size: 1.25rem;

  line-height: 1.4;
  color: #000;
  max-width: 800px;
  margin: 0 auto;

}

.types-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

.types-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.type-card {
  background: #F9FAFB;
  border-radius: 40px;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  min-height: 120px;
}

.type-number {
  background: #EEEEEE;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  font-weight: 400;
  color: #1D174F;
  flex-shrink: 0;
}

.type-info h3 {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 400;
  margin-bottom: 0.5rem;
  color: #000;
}

.type-info p {
  font-family: 'Marion Standard', 'Roboto', sans-serif !important;
  font-size: 1.25rem;

  line-height: 1.35;
  color: #000;
}

.types-image {
  background: #74CAED;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.types-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  transform: translateY(160px);

}

@media (min-width: 1024px) {
  .types-content {
    grid-template-columns: 1fr 1fr;
  }

  .types-image img {
    transform: translateY(256px);

  }
}

/* ===================================
   FACTORS SECTION - PINK
   =================================== */

.factors-section {
  background: #F1617F;
  padding: clamp(3rem, 6vw, 6rem) clamp(1rem, 5vw, 4rem);
  overflow: hidden;
  position: relative;
}

.factors-layout {
  display: flex;
  flex-direction: column;
  max-width: 1100px;
  margin: 0 auto;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  background: white;
}


.factors-image-side {
  width: 100%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  background: #EB5575;
  min-height: 400px;
}

.factors-image-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}


.factors-card-bubble {
  background: #FEFEFE;
  padding: clamp(2rem, 4vw, 3.5rem);
  position: relative;
  width: 100%;
  z-index: 2;
}


.factors-text h2 {
  font-family: 'GBKleftis Erotas', 'Playfair Display', serif;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 400;
  margin-bottom: 1.5rem;
  color: #000;
  line-height: 1.2;
}

.factors-text>p {
  font-family: 'Marion Standard', 'Georgia', serif;
  font-size: 1.25rem;

  line-height: 1.45;
  margin-bottom: 1.5rem;
  color: #000;
}


.factors-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.factors-list li {
  font-family: 'Marion Standard', 'Georgia', serif;
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  color: #000;
}

.factors-list li::before {
  content: '';
  width: 8px;
  height: 8px;
  background: #F1617F;
  border-radius: 50%;
  flex-shrink: 0;
}

@media (min-width: 1024px) {
  .factors-layout {
    flex-direction: row;
    align-items: stretch;
  }

  .factors-image-side {
    width: 45%;
    min-height: auto;
  }

  .factors-image-side img {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: auto;
    max-height: 100%;
    object-fit: contain;
    object-position: bottom center;
  }

  .factors-card-bubble {
    width: 55%;
    margin-left: 0;
    border-radius: 0;
  }

  .factors-card-bubble::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -30px;
    transform: translateY(-50%);
    border-width: 25px 30px 25px 0;
    border-style: solid;
    border-color: transparent #FEFEFE transparent transparent;
    z-index: 10;
  }
}



/* ===================================
   ADULT ACNE SECTION - LIGHT GRAY
   =================================== */
.adult-acne-section {
  background: #F1EDED;
  padding: clamp(3rem, 8vw, 6rem) clamp(1rem, 5vw, 4rem);
}

.adult-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 3rem;
}

.adult-card {
  border-radius: 16px;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  min-height: 250px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.adult-card.green {
  background: #69C5AC;
}

.adult-card.blue {
  background: #88D6F6;
}

.adult-card.pink {
  background: #F1617F;
}

.adult-card h3 {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 400;
  color: #000;
}

.adult-card p {
  font-family: 'Marion Standard', 'Roboto', sans-serif !important;
  font-size: 1.25rem;

  line-height: 1.45;
  color: #000;
}

@media (min-width: 768px) {
  .adult-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .adult-card.pink {
    grid-column: 1 / -1;
  }
}

@media (min-width: 1200px) {
  .adult-cards {
    grid-template-columns: repeat(3, 1fr);
  }

  .adult-card.pink {
    grid-column: auto;
  }
}

/* ===================================
   MYTHS & TRUTHS SECTION - RED
   =================================== */
.myths-truths-section {
  background: #EAE7E7;
  padding: clamp(3rem, 8vw, 6rem) clamp(1rem, 5vw, 4rem);
  scroll-margin-top: 100px;
}

.section-title {
  font-family: 'GBKleftis Erotas', 'Playfair Display', serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 400;
  text-align: center;
  margin-bottom: 3rem;
  color: #000;
}

.myths-carousel {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  padding-top: 60px;

  padding-bottom: 40px;

}

@media (min-width: 1024px) {
  .myths-carousel {
    padding-top: 0;
  }
}


.myths-arrow {
  position: absolute;
  top: 0;

  bottom: auto;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  color: #B93F38;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid #F2F4F6;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 50;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.myths-arrow.prev {
  left: calc(50% - 60px);
  transform: none;
}

.myths-arrow.next {
  right: auto;
  left: calc(50% + 12px);
  transform: none;
}

.myths-arrow:hover {
  background: #ED5B53;
  color: white;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}


@media (min-width: 1024px) {
  .myths-arrow {
    top: 50%;
    bottom: auto;
    transform: translateY(-50%);
  }

  .myths-arrow.prev {
    left: 1rem;
    transform: translateY(-50%);
  }

  .myths-arrow.next {
    right: 1rem;
    left: auto;
    transform: translateY(-50%);
  }

  .myths-arrow:hover {
    transform: translateY(-50%) scale(1.1);
  }
}

.myths-slides-container {
  position: relative;
}

.myth-truth-card {
  background: #ED5B53;
  border-radius: 16px;
  padding: clamp(2rem, 5vw, 4rem);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);

  grid-area: stack;
  padding: clamp(2rem, 3vw, 3rem);
  display: block;
  width: 100%;
  transition: all 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
  transform-origin: center bottom;
  opacity: 0;
  z-index: 0;
  pointer-events: none;
  min-height: auto;
}

.myth-truth-card.active {
  opacity: 1;
  z-index: 10;
  transform: scale(1) translateX(0);
  pointer-events: auto;
}

.myth-truth-card.next-item {
  opacity: 1;
  z-index: 5;
  transform: scale(0.95) translateY(8px);

  filter: brightness(0.95);
}

.myth-truth-card.next-next-item {
  opacity: 1;
  z-index: 2;
  transform: scale(0.9) translateY(16px);

  filter: brightness(0.9);
}

.myth-truth-card.prev-item {
  opacity: 0;
  z-index: 10;

  transform: translateX(-120%) rotate(-5deg);
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.myth-side {
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  margin-bottom: 2rem;
}

.myth-side h3 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 400;
  margin-bottom: 1rem;
  color: #000;
}

.myth-text {
  font-family: 'Marion Standard', 'Roboto', sans-serif !important;
  font-size: clamp(1.25rem, 5vw, 32px);

  line-height: 1.35;
  color: #000;
}

.truth-side h3 {
  font-family: 'GBKleftis Erotas', 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 400;
  margin-bottom: 1rem;
  color: white;
}

.truth-side p {
  font-family: 'Marion Standard', 'Roboto', sans-serif !important;
  font-size: clamp(1.25rem, 4vw, 26px);

  line-height: 1.5;
  margin-bottom: 1rem;
  color: white;
}

.hashtag {
  text-align: right;
  font-weight: 700;
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: white;
  opacity: 0.9;
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  margin: 0;
}


@media (min-width: 1024px) {
  .myth-truth-card.active {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
  }

  .myths-arrow.prev {
    left: 2rem;
  }

  .myths-arrow.next {
    right: 2rem;
  }

  .myth-side {
    border-bottom: none;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    padding-right: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
  }

}

/* ===================================
   NUTRITION SECTION - LIGHT GRAY
   =================================== */
.nutrition-section {
  background: #F0EDED;
  padding: clamp(3rem, 8vw, 6rem) clamp(1rem, 5vw, 4rem);
  text-align: center;
}

.nutrition-container {
  max-width: 900px;
  margin: 0 auto;
}

.nutrition-title {
  font-family: 'GBKleftis Erotas', 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  color: #000;
  margin-bottom: 1.5rem;
}

.nutrition-text {
  font-family: 'Marion Standard', 'Roboto', sans-serif !important;
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  line-height: 1.6;
  color: #000;
}

/* ===================================
   ADVICE SECTION - TURQUOISE
   =================================== */

.advice-section {
  background: #74CAED;
  padding: 0;
  position: relative;
  overflow: hidden;

  min-height: auto;
  scroll-margin-top: 100px;
}

.advice-container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: clamp(3rem, 6vw, 5rem) clamp(1.5rem, 4vw, 3rem);
}

.advice-image {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  display: none;
}

.advice-image img {
  position: absolute;
  bottom: 0;
  right: 0;
  height: 100%;
  width: auto;
  max-width: 50%;
  object-fit: contain;
  object-position: bottom right;
}

.advice-card {
  background: white;
  border-radius: clamp(1.5rem, 3vw, 2rem);
  padding: clamp(2rem, 4vw, 3.5rem);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
  position: relative;
  z-index: 2;
  max-width: 100%;
  width: 100%;
}

.advice-title {
  font-family: 'GBKleftis Erotas', 'Playfair Display', serif;
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  font-weight: 400;
  color: #000;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
  text-align: left;
  line-height: 1.3;
}

.advice-item {
  display: flex;
  gap: clamp(1rem, 2vw, 1.5rem);
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
  align-items: flex-start;
}

.advice-item:last-child {
  margin-bottom: 0;
}

.advice-icon {
  width: clamp(3rem, 6vw, 3.5rem);
  height: clamp(3rem, 6vw, 3.5rem);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Marion Standard', 'Roboto', sans-serif !important;
  font-weight: 700;
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  flex-shrink: 0;
}

.advice-icon.blue {
  background: #DBEAFE;
  color: #1E40AF;
}

.advice-icon.green {
  background: #D1FAE5;
  color: #065F46;
}

.advice-text-content h3 {
  font-size: clamp(1.125rem, 2.2vw, 1.375rem);
  font-weight: 400;
  margin-bottom: clamp(0.5rem, 1vw, 0.75rem);
  color: #000;
  line-height: 1.3;
}

.advice-text-content p {
  font-family: 'Marion Standard', 'Roboto', sans-serif !important;
  font-size: 1.25rem;

  line-height: 1.5;
  color: #1F2937;
}

.advice-text-content strong {
  font-weight: 700;
  color: #000;
}

@media (min-width: 768px) {


  .advice-container {
    padding: clamp(4rem, 6vw, 6rem) clamp(2rem, 5vw, 4rem);
  }

  .advice-image {
    display: block;
  }

  .advice-image img {
    max-width: 70%;
  }

  .advice-card {
    max-width: 55%;
  }
}

@media (min-width: 1024px) {


  .advice-container {
    padding: clamp(8rem, 10vw, 12rem) clamp(3rem, 6vw, 6rem);
  }

  .advice-image img {
    max-width: 85%;
    height: auto;
    max-height: 100%;
  }

  .advice-card {
    max-width: 50%;
    padding: clamp(3rem, 5vw, 4.5rem);
  }

  .advice-section {
    height: 770px;

  }
}

@media (min-width: 1400px) {




  .advice-image img {
    max-width: 900px;
  }

  .advice-card {
    max-width: 700px;
    padding: 4.5rem;
  }
}

@media (max-width: 480px) {
  .advice-section {
    min-height: auto;
    height: auto;

    padding: 2rem 0;

  }

  .advice-container {
    min-height: auto;
    padding: 5rem 1.25rem;

    margin-top: 2rem;
    margin-top: 2rem;
    margin-bottom: 2rem;

    flex-direction: column;
    padding-bottom: 250px;

  }

  .advice-image {
    display: block !important;
    position: absolute;
    bottom: -2rem;

    right: 0;
    width: 100%;
    height: 300px;

    z-index: 0;
  }

  .advice-image img {
    position: relative;
    width: 100%;
    height: 100%;
    max-width: 100%;
    object-fit: contain;
    object-position: bottom center;
  }

  .advice-card {
    padding: 1.75rem;
  }

  .advice-item {
    gap: 0.875rem;
    margin-bottom: 1.75rem;
  }

  .advice-icon {
    width: 2.75rem;
    height: 2.75rem;
    font-size: 1.125rem;
  }
}

/* ===================================
   TIPS SECTION - GREEN
   =================================== */
.tips-section {
  background: #69C5AC;
  padding: clamp(3rem, 8vw, 6rem) clamp(1rem, 3vw, 2rem);
  overflow: hidden;
}

.tips-slider {
  position: relative;

  width: calc(100% + 2rem);
  margin-left: -1rem;
  margin-right: -1rem;
  padding: 0;
  max-width: 1400px;
}

.tips-container {
  display: flex;
  flex-wrap: nowrap;

  gap: 2rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 2rem 2rem;


  -webkit-overflow-scrolling: touch;

}

.tips-container::-webkit-scrollbar {
  height: 8px;
}

.tips-container::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 10px;
}

.tips-container::-webkit-scrollbar-thumb {
  background: rgba(0, 51, 102, 0.5);
  border-radius: 10px;
}

.tip-card {
  background: white;
  border-radius: 16px;
  padding: 1.5rem;

  min-width: 65vw;


  max-width: 320px;


  flex-shrink: 0;
  scroll-snap-align: center;
  position: relative;
  border: 1px solid #F2F4F6;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.tip-card.active {}

@media (min-width: 768px) {}

@media (min-width: 1024px) {
  .tips-slider {
    padding: 0;
    width: 100%;
    margin: 0 auto;
  }

  .tip-card {
    min-width: 350px;
    max-width: 800px;
    padding: 2.5rem;
  }
}




.tips-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  margin-top: 2rem;
}


.slider-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: white;
  border: 1px solid #E5E7EB;
  color: #003366;
  font-size: 1.25rem;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  position: relative;

  z-index: 10;
}

.slider-arrow:hover {
  background: #F9FAFB;
  transform: translateY(-2px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.slider-arrow:active {
  transform: translateY(0);
}

@media (min-width: 1024px) {


  .slider-arrow {
    position: static;
    transform: none;
    margin: 0;
  }
}

.tip-number {
  position: absolute;
  top: 0;
  right: 1rem;
  font-size: clamp(4rem, 10vw, 6rem);
  font-weight: 700;
  color: #40E0D0;
  opacity: 0.35;
  line-height: 1;
}

.tip-badge {
  display: inline-block;
  background: #E0F7FA;
  color: #006064;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.tip-card h3 {
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  font-weight: 400;
  margin-bottom: 1rem;
  color: #000;
}

.tip-card p {
  font-family: 'Marion Standard', 'Roboto', sans-serif !important;
  font-size: 1.25rem;

  line-height: 1.45;
  color: #495565;
  margin-bottom: 1rem;
}

.tip-highlight {
  background: #F9FAFB;
  border-left: 4px solid #40E0D0;
  padding: 1rem 1.5rem;
  border-radius: 8px;
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  color: #003366;
  margin-top: 1rem;
}

.slider-arrow {
  display: none;
}

@media (min-width: 1024px) {
  .tips-slider {
    padding-left: 4rem;
    padding-right: 4rem;
    width: 100%;
    margin: 0 auto;
  }

  .tip-card {
    min-width: 350px;

    max-width: 800px;
    padding: 2.5rem;

  }

  .slider-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: white;
    border: 1px solid #F2F4F6;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    z-index: 10;
    font-size: 1rem;
    font-weight: 700;
    color: #003366;
  }

  .slider-arrow.prev {
    left: 1rem;
  }

  .slider-arrow.next {
    right: 1rem;
  }

  .slider-arrow:hover {
    background: #f5f5f5;
  }
}

/* ===================================
   PROMO SECTION - PINK
   =================================== */
.promo-section {
  background: #F1617F;
  height: 450px;
  padding: 0;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.promo-content {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  height: 100%;
}

.promo-text {
  text-align: center;
  max-width: 600px;
  z-index: 5;
  position: relative;
}

.promo-text h2 {
  font-family: 'GBKleftis Erotas', 'Playfair Display', serif;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 400;
  margin-bottom: 0.5rem;
  color: #000;
  line-height: 1.1;
}

.promo-text p {
  font-family: 'Marion Standard', 'Georgia', serif;
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.5;
  margin-bottom: 2rem;
  color: #000;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.promo-cta {
  background: #40E0D0;
  color: #000;
  border: none;
  padding: 1rem 2rem;
  border-radius: 4px;
  font-family: 'Marion Standard', 'Georgia', serif;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

.promo-cta:hover {
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .promo-cta {
    display: inline-block;
    max-width: 100%;
    white-space: normal;
    text-align: center;
    padding: 1rem 1.5rem;
    line-height: 1.4;
  }
}


.promo-image {
  position: absolute;
  right: -35%;
  bottom: -30%;
  height: 130%;
  width: auto;
  z-index: 1;
  display: block;
  pointer-events: none;
}

.promo-image img {
  height: 100%;
  width: auto;
  object-fit: contain;
  display: block;
}

@media (max-width: 768px) {
  .promo-section {
    height: auto;
    padding: 3rem 1rem;
  }

  .promo-image {
    display: none;
  }
}

@media (min-width: 769px) {
  .promo-image {
    display: block;
  }
}

/* ===================================
   CAMPAIGN SECTION
   =================================== */
.campaign-section {
  background: white;
  padding: clamp(3rem, 8vw, 6rem) clamp(1rem, 5vw, 4rem);
}

.campaign-slider {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}

.campaign-image {
  border-radius: 16px;
  overflow: hidden;
  border: 4px solid white;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
}

.campaign-image img {
  width: 100%;
  height: auto;
  display: block;
}

@media (min-width: 768px) {
  .campaign-slider .slider-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid #F2F4F6;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    font-size: 1.25rem;
    font-weight: 700;
    color: #003366;
  }

  .campaign-slider .slider-arrow.prev {
    left: 1rem;
  }

  .campaign-slider .slider-arrow.next {
    right: 1rem;
  }
}

/* ===================================
   FOOTER
   =================================== */
.footer {
  background: #003366;
  padding: clamp(3rem, 8vw, 6rem) clamp(1rem, 5vw, 4rem);
  color: white;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

.footer-column h3 {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 400;
  margin-bottom: 1rem;
  color: white;
}

.footer-column p,
.footer-column ul {
  font-family: 'Marion Standard', 'Roboto', sans-serif !important;
  font-size: clamp(1rem, 1.8vw, 1.125rem);
  line-height: 1.45;
  color: #D0D5DB;
}

.footer-column ul {
  list-style: none;
}

.footer-column ul li {
  margin-bottom: 0.75rem;
}

.footer-column ul li a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.footer-column ul li a:hover {
  text-decoration: underline;
  opacity: 0.8;
}

.footer-logo {
  width: 100%;
  max-width: 200px;
  height: auto;
  margin-bottom: 1rem;
}

.social-icons {
  display: flex;
  gap: 1rem;
}

.social-icons a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: background 0.3s;
}

.social-icons a:hover {
  background: rgba(255, 255, 255, 0.2);
}

@media (min-width: 768px) {
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-container {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ===================================
   UTILITY CLASSES
   =================================== */
@media (max-width: 767px) {

  .slider-arrow {
    display: none !important;
  }
}

*:focus-visible {
  outline: 2px solid #4a90e2;
  outline-offset: 2px;
}

html {
  scroll-behavior: smooth;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button {
  font-family: inherit;
}


/* ===================================
   CAMPAIGN CAROUSEL
   =================================== */
.campaign-section {
  padding: clamp(3rem, 6vw, 5rem) 1rem;
  background: white;
  text-align: center;
}

.campaign-carousel-container {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 1rem;
}

.campaign-track {
  display: grid;
  grid-template-areas: "stack";
  width: 100%;
  position: relative;
}

.campaign-slide {
  grid-area: stack;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
  pointer-events: none;
  width: 100%;
}

.campaign-slide.active {
  opacity: 1;
  pointer-events: auto;
  z-index: 10;
  position: relative;
}

.campaign-slide img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.campaign-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: white;
  border: 1px solid #f0f0f0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 20;
  color: #214391;

  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.campaign-arrow:hover {
  background: #214391;
  color: white;
  border-color: #214391;
}

.campaign-arrow.prev {
  left: -24px;
}

.campaign-arrow.next {
  right: -24px;
}

.campaign-dots {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 2rem;
}

.campaign-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #E5E7EB;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s;
}

.campaign-dot.active {
  background: #214391;
  transform: scale(1.2);
}


@media (max-width: 768px) {
  .campaign-arrow {
    display: none;

  }

  .campaign-arrow.prev {
    left: 0;
  }

  .campaign-arrow.next {
    right: 0;
  }
}

/* ===================================
   SPONSORS SECTION
   =================================== */
.sponsors-section {
  background: white;
  padding: 4rem 2rem;
  border-top: 1px solid #eee;
}

.sponsors-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4rem;
}

.sponsor-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  width: 100%;
}

.sponsor-group h3 {
  font-family: 'GBKleftis Erotas', 'Playfair Display', serif;
  font-weight: 400;
  font-size: 2rem;
  color: #000;
  margin: 0;
}

.grand-sponsor img {
  height: 160px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

.grand-sponsors-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4rem;
  flex-wrap: wrap;
  width: 100%;
}

/* ===================================
   SPONSORS SECTION
   =================================== */
.sponsors-section {
  padding: 4rem 2rem;
  background-color: white;
  text-align: center;
}

.sponsors-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.sponsor-group h3 {
  font-family: 'GBKleftis Erotas', serif;
  font-size: 28px;
  color: #000000;
  margin-bottom: 2rem;
  font-weight: normal;
}

.duet-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4rem;
  flex-wrap: wrap;
}

.sponsor-duet {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.centered-duet {
  margin: 0 auto;
}

.sponsor-logo {
  display: block;
  width: auto;
  height: 200px;
  max-width: 400px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.sponsor-logo:hover {
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .sponsors-section {
    padding: 3rem 1.5rem;
  }

  .sponsors-container {
    gap: 2rem;
  }

  .sponsor-group h3 {
    font-size: 22px;
  }

  .duet-wrapper {
    gap: 1.5rem;
    flex-direction: column;
  }

  .sponsor-duet {
    gap: 1rem;
  }

  .sponsor-logo {
    height: 130px;
    max-width: 300px;
  }
}



/* ===================================
   BACK TO TOP BUTTON
   =================================== */
.back-to-top {
  position: fixed !important;
  bottom: 2rem !important;
  right: 2rem !important;
  background-color: #B93F38;

  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
  z-index: 9999 !important;
  width: 50px;
  height: 50px;
  padding: 0;
  display: flex !important;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.back-to-top svg {
  width: 24px;
  height: 24px;
  display: block;
}

.back-to-top:hover {
  transform: translateY(-5px);
  background-color: #a43630;
}

.back-to-top.visible {
  opacity: 1 !important;
  visibility: visible !important;
}

@media (max-width: 768px) {
  .back-to-top {
    bottom: 1.5rem !important;
    right: 1.5rem !important;
    width: 40px;
    height: 40px;
  }

  .back-to-top svg {
    width: 20px;
    height: 20px;
  }
}