/* Reset & Variables */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Sana App Colors - from Flutter code */
    --primary-500: #c57b91;
    --primary-600: #be6982;
    --primary-700: #9f425e;
    --primary-400: #cd8ea1;
    --healing-primary: #F8BBD9;
    --healing-secondary: #F3E8FF;
    --healing-accent: #DB2777;
    --gray-500: #667085;
    --gray-400: #98a2b3;
    --white: #FFFFFF;
    --text-dark: #1F2937;
    --text-light: #F9FAFB;
    
    /* Fonts */
    --font-serif: 'Kurale', serif;
    --font-sans: 'Inter', sans-serif;
    
    /* Spacing */
    --container-width: 1200px;
    --section-padding: 100px;
    
    /* Parallax */
    --scroll-position: 0px;
}

body {
    font-family: var(--font-sans);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Main background wrapper for hero to wellness sections */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,  rgba(197, 123, 145, 0.2),
            rgba(205, 142, 161, 0.2)), url('assets/images/hero-bg.jpg') center top/cover no-repeat;
    z-index: -2;
    pointer-events: none;
}

/* ABOUT page background (show only until the intro section) */
body.about-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: var(--about-bg-height, 70vh);
    background: linear-gradient(135deg, rgba(197, 123, 145, 0.5), rgba(205, 142, 161, 0.5)), url('assets/images/about-hero-bg.jpg') center top/cover no-repeat;
    background-size: cover;
    z-index: -2;
    pointer-events: none;
}

/* Gradient section background */
.cta-section {
    background: linear-gradient(180deg, var(--primary-500) 0%, var(--primary-400), var(--primary-600) 100%);
    position: relative;
    z-index: 2;
}

/* Make background extend through all sections until CTA */
.hero,
.why-sana,
.daily-wellness {
    position: relative;
    z-index: 1;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* Navigation */
.navbar {
    top: 0;
    left: 0;
    right: 0;
    background: transparent;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.3s ease;
}


.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    width: 50px;
    height: 50px;
}

.logo-text {
    font-family: var(--font-serif);
    font-size: 50px;
    font-weight: 600;
    color: var(--white);
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
    padding-bottom: 4px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #FBD7B5;
    transition: width 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: #FBD7B5;
}

.nav-links a.active::after {
    width: 100%;
}

.nav-links a:hover::after {
    width: 100%;
}

.btn-download-nav {
    background: #FBD7B5;
    color: var(--primary-500);
    border: none;
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-download-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(240, 171, 252, 0.6);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--white);
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: none;
    padding-top: 120px;
    padding-bottom: 80px;
    position: relative;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    min-height: calc(100vh - 200px);
}

.hero-text h1 {
    font-family: var(--font-serif);
    font-size: 56px;
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 24px;
    animation: fadeInUp 1s ease;
}

.hero-description {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 40px;
    max-width: 480px;
    line-height: 1.8;
    animation: fadeInUp 1s ease 0.2s backwards;
}

.store-badges {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.4s backwards;
}

.store-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #000000;
    color: var(--white);
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.store-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.store-icon {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
}

.store-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.2;
}

.store-subtitle {
    font-size: 10px;
    font-weight: 400;
    text-transform: uppercase;
    opacity: 0.8;
}

.store-title {
    font-size: 16px;
    font-weight: 600;
}

.hero-phones {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    animation: fadeIn 1.2s ease 0.6s backwards;
}

.phone-mockup {
    max-width: 280px;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
    transition: transform 0.3s ease;
}

.hero-phones .phone-1 {
    animation: float 3s ease-in-out infinite;
}

.hero-phones .phone-2 {
    animation: float 3s ease-in-out 1.5s infinite;
}

.phone-mockup:hover {
    transform: scale(1.05);
}

/* Hide second phone on mobile */
@media (max-width: 768px) {
    .hero-phones .phone-2 {
        display: none;
    }
    
    .phone-mockup {
        max-width: 240px;
    }
}

/* Why Sana Section */
.why-sana {
    padding: var(--section-padding) 0;
    background: none;
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.section-header h2 {
    font-family: var(--font-serif);
    font-size: 48px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
}

.section-description {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}

.feature-card {
    background: #F2EAEC;
    /* backdrop-filter: blur(10px); */
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 32px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(180deg, #FBD7B5 0%, var(--primary-500) 50%, #E3AABB 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0 8px 20px rgba(240, 171, 252, 0.3);
}

.feature-icon img {
    width: 30px;
    height: 30px;
}

.feature-card h3 {
    font-family: var(--font-serif);
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.feature-card p {
    font-size: 15px;
    color: var(--text-dark);
    line-height: 1.7;
}

/* Daily Wellness Section */
.daily-wellness {
    min-height: 60vh;
    background: none;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: var(--section-padding) 24px;
}

.wellness-overlay {
    max-width: 800px;
}

.wellness-overlay h2 {
    font-family: var(--font-serif);
    font-size: 48px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 24px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.wellness-overlay p {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.8;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

/* CTA Section */
.cta-section {
    padding: var(--section-padding) 0;
    background: linear-gradient(180deg, #FBD7B5 0%, var(--primary-500) 50%, #E3AABB 100%);
    position: relative;
    z-index: 2;
}

.cta-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.cta-text h2 {
    font-family: var(--font-serif);
    font-size: 52px;
    font-weight: 700;
    color: var(--text-light);
    line-height: 1.2;
    margin-bottom: 40px;
}

.cta-text .highlight {
    color: var(--primary-600);
    position: relative;
}

.cta-phones {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-mockup-group {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 60px rgba(0, 0, 0, 0.2));
}

/* Footer */
.footer {
    background: var(--primary-600);
    padding: 32px 0;
    text-align: center;
}

.footer p {
    color: var(--text-light);
    font-size: 14px;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    :root {
        --section-padding: 80px;
    }
    
    .hero-content,
    .cta-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-phones,
    .cta-phones {
        justify-content: center;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px;
    }
    
    .nav-links {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    .btn-download-nav {
        display: none;
    }
    .btn-download-mobile {
    display: none !important;
  }
    .hero {
        padding-top: 100px;
    }
    
    .hero-text h1 {
        font-size: 40px;
    }
    .logo-img {
    width: 35px;
    height: 35px;
}

.logo-text {
    font-family: var(--font-serif);
    font-size: 35px;
    font-weight: 600;
    color: var(--white);
}

    .hero-description {
        font-size: 16px;
    }
    
    .section-header h2,
    .wellness-overlay h2 {
        font-size: 36px;
    }
    
    .cta-text h2 {
        font-size: 40px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .phone-mockup {
        max-width: 240px;
    }
    
    .hero-phones .phone-2 {
        display: none;
    }
    
    .phone-mockup-group {
        max-width: 90%;
    }
    
    .store-badges {
        flex-direction: column;
        width: 100%;
    }
    
    .store-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 32px;
    }
    
    .section-header h2,
    .wellness-overlay h2 {
        font-size: 28px;
    }
    
    .cta-text h2 {
        font-size: 32px;
    }
    
    .store-btn {
        padding: 10px 20px;
    }
    .btn-download-mobile {
    display: none !important;
  }
    .store-icon {
        width: 24px;
        height: 24px;
    }
    
    .store-subtitle {
        font-size: 9px;
    }
    
    .store-title {
        font-size: 14px;
    }
}
/* ============================================
   MOBILE MENU OVERLAY
   ============================================ */

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, #D8A5BE 0%, #E3AABB 100%);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 24px;
}

.mobile-menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: var(--white);
    cursor: pointer;
    padding: 8px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-menu-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    margin-top: 100px;
    width: 100%;
    max-width: 300px;
}

.mobile-nav-link {
    color: var(--white);
    text-decoration: none;
    font-size: 20px;
    font-weight: 500;
    transition: opacity 0.3s ease;
    position: relative;
}

.mobile-nav-link:hover {
    opacity: 0.8;
}

.mobile-nav-link.active {
    text-decoration: underline;
    text-underline-offset: 8px;
    text-decoration-thickness: 2px;
}

.btn-download-mobile {
    background: #FBD7B5;
    color: var(--text-dark);
    border: none;
    padding: 16px 48px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    margin-top: 20px;
    width: 100%;
    transition: transform 0.3s ease;
}

.btn-download-mobile:hover {
    transform: translateY(-2px);
}

/* ============================================
   ABOUT PAGE STYLES
   ============================================ */

/* About Hero Section */
.about-hero {
    min-height: 50vh;
    /* The actual background for the About page is handled on body.about-page::before
       so the navbar and page show a continuous background until the intro section. */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 140px 24px 80px;
    position: relative;
}

.about-hero-content h1 {
    font-family: var(--font-serif);
    font-size: 56px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
    animation: fadeInUp 1s ease;
}

.about-hero-subtitle {
    font-family: var(--font-serif);
    font-size: 28px;
    font-weight: 400;
    color: var(--white);
    animation: fadeInUp 1s ease 0.2s backwards;
}

/* About Introduction Section */
.about-intro {
    padding: 80px 0;
    background: #F2EAEC;
}

.intro-text {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-dark);
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

/* Mission Section */
.mission-section {
    padding: 100px 0;
    background: #F2EAEC;
}

.section-title {
    font-family: var(--font-serif);
    font-size: 48px;
    font-weight: 600;
    color: #C57B91;
    text-align: center;
    margin-bottom: 60px;
}

.mission-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

.mission-image {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.mission-image img {
    width: 100%;
    height: auto;
    display: block;
}

.mission-text p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-dark);
}

/* Why We Matter Section */
.why-matter-section {
    padding: 100px 0;
    background: #F2EAEC;
}

.why-matter-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

.why-matter-text h2 {
    text-align: left;
    margin-bottom: 30px;
}

.why-matter-text p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-dark);
}

.why-matter-image {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.why-matter-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* ============================================
   RESPONSIVE - ABOUT PAGE
   ============================================ */

@media (max-width: 768px) {
    .about-hero {
        min-height: 40vh;
        padding: 120px 24px 60px;
    }
    
    .about-hero-content h1 {
        font-size: 40px;
    }
    
    .about-hero-subtitle {
        font-size: 22px;
    }
    
    .about-intro {
        padding: 60px 0;
    }
    
    .intro-text {
        font-size: 16px;
    }
    
    .mission-section,
    .why-matter-section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 36px;
        margin-bottom: 40px;
    }
    
    .mission-content,
    .why-matter-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .mission-text p,
    .why-matter-text p {
        font-size: 16px;
    }
    
    .why-matter-text h2 {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .about-hero-content h1 {
        font-size: 32px;
    }
    
    .about-hero-subtitle {
        font-size: 18px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .mobile-menu-links {
        margin-top: 60px;
    }
    
    .mobile-nav-link {
        font-size: 18px;
    }
}
/* ============================================
   POLICY PAGES - PRIVACY & TERMS
   ============================================ */

/* Solid navbar background for policy pages */
.navbar-solid {
    background: var(--primary-500) !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Policy page body styling */
body.policy-page {
    background: #F9F5F6;
}

/* Policy Hero Section */
.policy-hero {
    background: var(--primary-500);
    padding: 140px 24px 60px;
    text-align: center;
    min-height: 30vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.policy-hero h1 {
    font-family: var(--font-serif);
    font-size: 48px;
    font-weight: 700;
    color: var(--white);
    margin: 0;
    animation: fadeInUp 0.8s ease;
}

/* Policy Content Section */
.policy-content-section {
    background: #F9F5F6;
    padding: 60px 0 80px;
}

.policy-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 60px;
    align-items: start;
    position: relative;
}

/* Sidebar TOC */
.policy-sidebar {
    position: sticky;
    top: 100px;
    background: var(--white);
    border-radius: 16px;
    padding: 32px 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.toc-toggle {
    display: none;
    width: 100%;
    background: none;
    border: none;
    padding: 12px 0;
    font-family: var(--font-sans);
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    justify-content: space-between;
    align-items: center;
}

.toc-toggle svg {
    transition: transform 0.3s ease;
}

.toc-toggle.active svg {
    transform: rotate(180deg);
}

.policy-toc h3 {
    font-family: var(--font-serif);
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-600);
    margin-bottom: 20px;
}

.policy-toc ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.policy-toc li {
    margin-bottom: 12px;
}

.toc-link {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-500);
    text-decoration: none;
    padding: 8px 12px;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
}

.toc-link:hover {
    color: var(--primary-600);
    background: rgba(197, 123, 145, 0.1);
}

.toc-link.active {
    color: var(--primary-600);
    background: rgba(197, 123, 145, 0.15);
    font-weight: 600;
}

.toc-link.active::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 70%;
    background: var(--primary-600);
    border-radius: 0 3px 3px 0;
}

/* Main Policy Content */
.policy-main {
    background: var(--white);
    border-radius: 20px;
    padding: 48px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
}

.policy-header {
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 2px solid #F0E8EA;
}

.policy-header h2 {
    font-family: var(--font-serif);
    font-size: 36px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.policy-subtitle {
    font-size: 14px;
    color: var(--gray-500);
    line-height: 1.6;
    margin: 0;
}

.policy-intro {
    margin-bottom: 40px;
    padding: 24px;
    background: #FBF6F8;
    border-left: 4px solid var(--primary-500);
    border-radius: 8px;
}

.policy-intro p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.policy-intro p:last-child {
    margin-bottom: 0;
}

/* Policy Sections */
.policy-section {
    margin-bottom: 48px;
    scroll-margin-top: 120px;
}

.policy-section h3 {
    font-family: var(--font-serif);
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-600);
    margin-bottom: 20px;
}

.policy-section h4 {
    font-family: var(--font-serif);
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
    margin-top: 24px;
    margin-bottom: 12px;
}

.policy-section p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.policy-section ul {
    margin: 16px 0;
    padding-left: 24px;
}

.policy-section li {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.policy-section strong {
    color: var(--primary-600);
    font-weight: 600;
}

.policy-closing {
    font-style: italic;
    color: var(--primary-600);
    margin-top: 24px;
}

/* Policy Footer */
.policy-footer {
    margin-top: 60px;
    padding-top: 24px;
    border-top: 2px solid #F0E8EA;
    text-align: center;
}

.policy-footer p {
    font-size: 14px;
    color: var(--gray-500);
    margin: 0;
}

/* Responsive Design - Policy Pages */
@media (max-width: 1024px) {
    .policy-layout {
        grid-template-columns: 240px 1fr;
        gap: 40px;
    }
    
    .policy-sidebar {
        padding: 24px 20px;
    }
    
    .policy-main {
        padding: 40px 32px;
    }
}

@media (max-width: 768px) {
    .policy-hero {
        padding: 120px 24px 40px;
        min-height: 25vh;
    }
    
    .policy-hero h1 {
        font-size: 36px;
    }
    
    .policy-layout {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    /* Hide sidebar on mobile, show toggle */
    .policy-sidebar {
        position: relative;
        top: 0;
        margin-bottom: 24px;
        padding: 20px;
    }
    
    .toc-toggle {
        display: flex;
    }
    
    .policy-toc {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    
    .policy-toc.active {
        max-height: 600px;
        margin-top: 16px;
    }
    
    .policy-toc h3 {
        font-size: 16px;
    }
    
    .policy-main {
        padding: 32px 24px;
    }
    
    .policy-header h2 {
        font-size: 28px;
    }
    
    .policy-section h3 {
        font-size: 24px;
    }
    
    .policy-section h4 {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .policy-hero h1 {
        font-size: 28px;
    }
    
    .policy-main {
        padding: 24px 20px;
        border-radius: 16px;
    }
    
    .policy-header h2 {
        font-size: 24px;
    }
    
    .policy-section h3 {
        font-size: 20px;
    }
    
    .policy-section h4 {
        font-size: 16px;
    }
    
    .policy-section p,
    .policy-section li {
        font-size: 14px;
    }
    
    .policy-intro {
        padding: 16px;
    }
}
/* How It Works Section */
.how-it-works {
    padding: var(--section-padding) 0;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

.how-it-works h2 {
    font-family: var(--font-serif);
    font-size: 48px;
    font-weight: 700;
    color: var(--white);
    text-align: center;
    margin-bottom: 60px;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.step-card {
    text-align: center;
    padding: 40px 24px;
}

.step-number {
    display: inline-block;
    font-family: var(--font-serif);
    font-size: 48px;
    font-weight: 700;
    color: #FBD7B5;
    margin-bottom: 20px;
    opacity: 0.5;
}

.step-card h3 {
    font-family: var(--font-serif);
    font-size: 24px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 16px;
}

.step-card p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.7;
}

/* Real Stories Section */
.real-stories {
    padding: var(--section-padding) 0;
    background: none;
}

.real-stories h2 {
    font-family: var(--font-serif);
    font-size: 48px;
    font-weight: 700;
    color: var(--white);
    text-align: center;
    margin-bottom: 16px;
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 60px;
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    max-width: 1100px;
    margin: 0 auto;
}

.story-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 32px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.story-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.story-text {
    font-size: 16px;
    font-style: italic;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
}

.story-author {
    font-size: 14px;
    font-weight: 600;
    color: #FBD7B5;
    text-align: right;
}

/* Responsive - New Sections */
@media (max-width: 768px) {
    .how-it-works h2,
    .real-stories h2 {
        font-size: 36px;
    }
    
    .steps-grid,
    .stories-grid {
        grid-template-columns: 1fr;
    }
    
    .step-number {
        font-size: 40px;
    }
    
    .step-card h3 {
        font-size: 20px;
    }
}
/* How It Works Section */
.how-it-works {
    padding: var(--section-padding) 0;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
}

.how-it-works h2 {
    font-family: var(--font-serif);
    font-size: 48px;
    font-weight: 700;
    color: var(--white);
    text-align: center;
    margin-bottom: 60px;
    letter-spacing: -0.5px;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 48px;
    max-width: 1100px;
    margin: 0 auto;
}

.step-card {
    text-align: center;
    padding: 40px 32px;
}

.step-number {
    display: block;
    font-family: var(--font-serif);
    font-size: 56px;
    font-weight: 300;
    color: #FBD7B5;
    margin-bottom: 24px;
    opacity: 0.4;
    letter-spacing: -2px;
}

.step-card h3 {
    font-family: var(--font-serif);
    font-size: 24px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 16px;
    letter-spacing: -0.3px;
}

.step-card p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    font-weight: 300;
}

/* Real Stories Section */
.real-stories {
    padding: var(--section-padding) 0;
    background: none;
}

.real-stories h2 {
    font-family: var(--font-serif);
    font-size: 48px;
    font-weight: 700;
    color: var(--white);
    text-align: center;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.section-subtitle {
    text-align: center;
    font-size: 17px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 64px;
    font-weight: 300;
    font-style: italic;
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    max-width: 1100px;
    margin: 0 auto;
}

.story-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 40px 32px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.story-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

.story-text {
    font-size: 15px;
    font-style: italic;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.9;
    margin-bottom: 24px;
    font-weight: 300;
}

.story-author {
    font-size: 13px;
    font-weight: 500;
    color: #FBD7B5;
    text-align: right;
    letter-spacing: 0.5px;
}

/* Sana Standard Section (About Page) */
.sana-standard {
    padding: 100px 0;
    background: #F2EAEC;
}

.standard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 48px;
    max-width: 1100px;
    margin: 60px auto 0;
}

.standard-item {
    text-align: center;
    padding: 0 20px;
}

.standard-item h3 {
    font-family: var(--font-serif);
    font-size: 24px;
    font-weight: 600;
    color: var(--primary-600);
    margin-bottom: 16px;
    letter-spacing: -0.3px;
}

.standard-item p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-dark);
    font-weight: 300;
}

/* Responsive - New Sections */
@media (max-width: 768px) {
    .how-it-works h2,
    .real-stories h2 {
        font-size: 36px;
    }
    
    .section-subtitle {
        font-size: 15px;
        margin-bottom: 48px;
    }
    
    .steps-grid,
    .stories-grid,
    .standard-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .step-number {
        font-size: 48px;
}
.step-card h3,
.standard-item h3 {
    font-size: 20px;
}

.step-card,
.story-card {
    padding: 32px 24px;
}

.sana-standard {
    padding: 60px 0;
}
}
@media (max-width: 480px) {
.how-it-works h2,
.real-stories h2 {
font-size: 28px;
}
.step-number {
    font-size: 40px;
}
}