/* DigitalLions Apps - App Store Theme */

/* CSS Variables - Modern App Store Style */
:root {
    /* Apple-inspired Colors */
    --apple-blue: #007AFF;
    --apple-dark-blue: #0051D5;
    --apple-light-blue: #5AC8FA;
    
    /* App Store Colors */
    --app-store-black: #000000;
    --app-store-white: #FFFFFF;
    --app-store-gray: #F5F5F7;
    --app-store-dark-gray: #1D1D1F;
    --app-store-text: #1D1D1F;
    --app-store-light-text: #86868B;
    
    /* Health App Colors (subtle) */
    --health-green: #34C759;
    --health-blue: #007AFF;
    --health-purple: #AF52DE;
    --health-pink: #FF2D55;
    --health-orange: #FF9500;
    
    /* Gradients - Clean & Modern */
    --hero-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --apps-gradient: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --features-gradient: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --contact-gradient: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
    --footer-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

/* General Body Styles - Clean App Store Style */
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--app-store-text);
    background: var(--app-store-gray);
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    position: relative;
}

/* Header - Modern App Store Style */
.health-header {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    color: var(--app-store-text);
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 1.5em;
    font-weight: 600;
    color: var(--app-store-text);
    position: relative;
}

.logo::before {
    content: '🦁';
    margin-right: 10px;
    font-size: 1.2em;
}

.main-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

.main-nav ul li {
    margin-left: 30px;
    position: relative;
}

.main-nav ul li a {
    color: var(--app-store-text);
    text-decoration: none;
    font-weight: 400;
    font-size: 0.95em;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 16px;
    border-radius: 8px;
}

.main-nav ul li a:hover {
    color: var(--apple-blue);
    background: rgba(0, 122, 255, 0.1);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--health-white);
    font-size: 1.5em;
    cursor: pointer;
}

.menu-toggle .icon-bar {
    display: block;
    width: 25px;
    height: 3px;
    background: linear-gradient(45deg, #4CAF50, #2196F3);
    margin: 5px 0;
    transition: 0.3s;
    border-radius: 2px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Hero Section - Modern App Store Style */
.health-hero {
    background: var(--hero-gradient);
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--app-store-white);
    position: relative;
    overflow: hidden;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    min-height: 100vh !important;
    max-height: 100vh !important;
}

.health-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    animation: healthFloat 15s ease-in-out infinite;
}

.health-hero::after {
    content: '🍎 💊 📝 🏥 💚 🩺 📊 🔬';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    opacity: 0.1;
    animation: healthNotes 20s linear infinite;
    pointer-events: none;
}

.hero-content {
    z-index: 1;
    padding: 20px;
    position: relative;
}

.hero-title {
    font-size: 4.5em;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.1;
    color: var(--app-store-white);
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 1.5em;
    margin-bottom: 40px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: -0.01em;
}

.hero-badges {
    margin-top: 30px;
}

.app-store-badge img {
    height: 60px;
    width: auto;
    transition: transform 0.3s ease;
}

.app-store-badge:hover img {
    transform: scale(1.05);
}

.btn-primary {
    background: var(--medical-gradient);
    background-size: 200% 200%;
    animation: healthPulse 3s ease infinite;
    color: var(--health-white);
    padding: 18px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    border: none;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.btn-primary:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    background: var(--note-gradient);
}

/* General Section Styles */
.main-content {
    padding-top: 0;
    margin: 0;
    padding: 0;
}

/* CRITICAL: Force no gap between hero and about sections */
.health-hero {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
    border-bottom: none !important;
    height: 100vh !important;
    min-height: 100vh !important;
    max-height: 100vh !important;
}

.about-section {
    margin-top: 0 !important;
    padding-top: 0 !important;
    border-top: none !important;
}

/* Remove any potential spacing from main content */
.main-content {
    margin: 0;
    padding: 0;
}

/* Ensure no gap between hero and about sections */
.health-hero + .about-section {
    margin-top: 0 !important;
    padding-top: 0 !important;
    border-top: none !important;
}

/* Force sections to be flush */
.health-hero,
.about-section {
    box-sizing: border-box;
    vertical-align: top;
}

.health-section {
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.health-section::before {
    content: '🍎 💊 📝 🏥 💚 🩺 📊 🔬';
    position: absolute;
    top: 20px;
    left: 0;
    width: 100%;
    font-size: 1.5rem;
    opacity: 0.1;
    animation: healthNotes 15s linear infinite;
    pointer-events: none;
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.section-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.apps-section .section-title,
.features-section .section-title,
.contact-section .section-title {
    color: var(--app-store-white);
}

.about-section .section-title {
    color: var(--app-store-text);
}

.section-subtitle {
    font-size: 1.3em;
    margin-bottom: 50px;
    font-weight: 400;
    letter-spacing: -0.01em;
}

.apps-section .section-subtitle,
.features-section .section-subtitle,
.contact-section .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
}

.about-section .section-subtitle {
    color: var(--app-store-light-text);
}

/* About Section */
.about-section {
    background: var(--app-store-white);
    color: var(--app-store-text);
    position: relative;
    padding: 100px 0;
    margin: 0 !important;
    border: none !important;
}

.about-section .section-container {
    padding-top: 0;
    margin-top: 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    text-align: left;
    align-items: center;
}

.about-text p {
    margin-bottom: 15px;
    font-size: 1.1em;
    color: var(--app-store-text);
    line-height: 1.7;
    position: relative;
}

.about-text h3 {
    color: var(--health-mint);
    font-size: 1.8em;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
}

.about-image img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    border: 3px solid rgba(255, 255, 255, 0.2);
}

.about-image img:hover {
    transform: scale(1.05) rotate(2deg);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

/* Apps Section - Modern App Store Style */
.apps-section {
    background: var(--apps-gradient);
    color: var(--app-store-white);
    padding: 100px 0;
}

.apps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.app-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-align: left;
    color: var(--app-store-text);
}

.app-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.app-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    display: block;
}

.app-name {
    font-size: 2em;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--app-store-text);
    letter-spacing: -0.02em;
}

.app-tagline {
    font-size: 1.1em;
    color: var(--app-store-light-text);
    margin-bottom: 15px;
    font-weight: 500;
}

.app-description {
    font-size: 1em;
    line-height: 1.6;
    color: var(--app-store-text);
    margin-bottom: 25px;
}

.app-store-link {
    display: inline-flex;
    align-items: center;
    color: var(--apple-blue);
    text-decoration: none;
    font-weight: 500;
    font-size: 1em;
    transition: all 0.3s ease;
}

.app-store-link:hover {
    color: var(--apple-dark-blue);
    transform: translateX(5px);
}

.app-store-link span {
    margin-right: 5px;
}

/* Features Section - Modern App Store Style */
.features-section {
    background: var(--features-gradient);
    color: var(--app-store-white);
    padding: 100px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-item {
    background: rgba(255, 255, 255, 0.15);
    padding: 35px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    text-align: center;
}

.feature-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.feature-item h3 {
    font-size: 1.4em;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--app-store-white);
}

.feature-item p {
    font-size: 1em;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

/* Services Section */
.services-section {
    background: var(--medical-gradient);
    background-size: 400% 400%;
    animation: healthPulse 10s ease infinite;
    color: var(--health-white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-item {
    background: rgba(255, 255, 255, 0.15);
    padding: 35px;
    border-radius: 25px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.service-item:hover {
    transform: translateY(-15px) scale(1.05);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.25);
    border-color: var(--health-mint);
}

.service-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    display: block;
    text-align: center;
    animation: healthBounce 2s ease-in-out infinite;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.service-item h3 {
    font-size: 1.6em;
    margin-bottom: 15px;
    color: var(--health-mint);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
}

.service-item p {
    color: var(--health-white);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    line-height: 1.6;
}

/* Experience Section */
.experience-section {
    background: var(--note-gradient);
    background-size: 400% 400%;
    animation: healthPulse 14s ease infinite;
}

.experience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.experience-card {
    background: rgba(255, 255, 255, 0.15);
    color: var(--health-white);
    padding: 35px;
    border-radius: 25px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.experience-card:hover {
    transform: translateY(-20px) scale(1.08);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.25);
    border-color: var(--health-mint);
}

.experience-number {
    font-size: 4em;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--health-mint);
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
    animation: healthPulse 2s ease-in-out infinite;
    position: relative;
}

.experience-title {
    font-size: 1.4em;
    font-weight: 500;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

/* Contact Section - Modern App Store Style */
.contact-section {
    background: var(--contact-gradient);
    color: var(--app-store-white);
    padding: 100px 0;
}

.contact-section .section-title,
.contact-section .section-subtitle {
    color: var(--app-store-white);
}

.contact-form {
    max-width: 700px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.95);
    padding: 45px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    text-align: left;
    position: relative;
}

.contact-form .form-group {
    margin-bottom: 25px;
    display: flex;
    gap: 20px;
}

.contact-form .form-group input,
.contact-form .form-group textarea {
    width: 100%;
    padding: 18px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    font-size: 1em;
    color: var(--health-text);
    background: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
    position: relative;
}

.contact-form .form-group input:focus,
.contact-form .form-group textarea:focus {
    outline: none;
    border-color: var(--health-mint);
    box-shadow: 0 0 25px rgba(129, 199, 132, 0.4);
    transform: scale(1.02);
    background: rgba(255, 255, 255, 1);
}

.contact-form .form-group input::placeholder,
.contact-form .form-group textarea::placeholder {
    color: #666;
}

.contact-form .form-group textarea {
    resize: vertical;
    min-height: 140px;
}

.contact-form .btn-primary {
    width: auto;
    display: block;
    margin-top: 25px;
    cursor: pointer;
    border: none;
    padding: 20px 40px;
    font-size: 1.1em;
}

.form-messages {
    margin-top: 25px;
    font-size: 1.2em;
    font-weight: 500;
    color: var(--health-white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

/* Footer - Modern App Store Style */
.health-footer {
    background: var(--footer-gradient);
    color: var(--app-store-white);
    padding: 60px 0 30px 0;
    position: relative;
}

.footer-app-store {
    margin-top: 20px;
}

.app-store-badge-small {
    display: inline-block;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    color: var(--app-store-white);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9em;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.app-store-badge-small:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.health-footer::before {
    content: '🍎 💊 📝 🏥 💚 🩺 📊 🔬';
    position: absolute;
    top: 20px;
    left: 0;
    width: 100%;
    text-align: center;
    font-size: 1.5rem;
    opacity: 0.1;
    animation: healthNotes 20s linear infinite;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 30px;
    margin-bottom: 20px;
    align-items: start;
}

.footer-brand h3 {
    font-size: 1.8em;
    font-weight: 700;
    color: var(--app-store-white);
    margin-bottom: 10px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1em;
}

.footer-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.footer-section h4 {
    font-size: 1.1em;
    color: var(--app-store-white);
    margin-bottom: 15px;
    font-weight: 600;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section li {
    margin-bottom: 8px;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 4px 0;
    display: inline-block;
    font-size: 0.9em;
}

.footer-section a:hover {
    color: var(--app-store-white);
    transform: translateX(10px);
}

.footer-bottom {
    text-align: center;
    border-top: 2px solid rgba(255, 255, 255, 0.2);
    padding-top: 15px;
    color: var(--health-light);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    font-size: 0.9em;
}

/* Health Animations */
@keyframes healthPulse {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

@keyframes healthNotes {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

@keyframes healthFloat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes healthBounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Animation Classes */
.animate-fadeInUp {
    animation: fadeInUp 0.8s ease-out;
}

.animate-fadeInLeft {
    animation: fadeInLeft 0.8s ease-out;
}

.animate-fadeInRight {
    animation: fadeInRight 0.8s ease-out;
}

.animate-fadeInScale {
    animation: fadeInScale 0.6s ease-out;
}

.animate-healthPulse {
    animation: healthPulse 2s ease-in-out infinite;
}

.animate-healthBounce {
    animation: healthBounce 1s ease-in-out infinite;
}

.animate-healthFloat {
    animation: healthFloat 3s ease-in-out infinite;
}

/* Hover Effects */
.btn-primary:hover {
    animation: healthPulse 0.6s ease-in-out;
}

.service-item:hover .service-icon {
    animation: healthBounce 0.6s ease-in-out;
}

.experience-card:hover {
    animation: healthPulse 1s ease-in-out;
}

.logo:hover {
    animation: healthBounce 0.6s ease-in-out;
}

/* Staggered Animation Delays */
.animate-delay-1 { animation-delay: 0.1s; }
.animate-delay-2 { animation-delay: 0.2s; }
.animate-delay-3 { animation-delay: 0.3s; }
.animate-delay-4 { animation-delay: 0.4s; }
.animate-delay-5 { animation-delay: 0.5s; }
.animate-delay-6 { animation-delay: 0.6s; }

/* Responsive Adjustments */
@media (max-width: 768px) {
    .header-container {
        flex-wrap: wrap;
        justify-content: center;
    }

    .logo {
        width: 100%;
        justify-content: center;
        margin-bottom: 15px;
    }

    .main-nav {
        width: 100%;
        order: 3;
        display: none;
        flex-direction: column;
        text-align: center;
    }

    .main-nav.active {
        display: flex;
    }

    .main-nav ul {
        flex-direction: column;
    }

    .main-nav ul li {
        margin: 10px 0;
    }

    .menu-toggle {
        display: block;
        position: absolute;
        right: 20px;
        top: 25px;
    }

    .hero-title {
        font-size: 2.5em;
    }

    .hero-subtitle {
        font-size: 1.2em;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .about-image {
        margin-top: 30px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .experience-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* Extra small screens */
@media (max-width: 480px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

/* Policy Pages Styles */
.policy-main {
    padding: 120px 0 80px;
    background: var(--wellness-gradient);
    min-height: 100vh;
}

.policy-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.policy-header {
    text-align: center;
    margin-bottom: 60px;
}

.policy-header h1 {
    font-size: 3rem;
    color: var(--health-white);
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.policy-divider {
    width: 100px;
    height: 4px;
    background: var(--health-gradient);
    margin: 0 auto;
    border-radius: 2px;
}

.policy-content {
    background: rgba(255, 255, 255, 0.95);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    line-height: 1.8;
    color: var(--health-text);
}

.policy-content h1,
.policy-content h2,
.policy-content h3,
.policy-content h4 {
    color: var(--health-green);
    margin-top: 30px;
    margin-bottom: 15px;
}

.policy-content h1 {
    font-size: 2.2rem;
    border-bottom: 3px solid var(--health-green);
    padding-bottom: 10px;
}

.policy-content h2 {
    font-size: 1.8rem;
}

.policy-content h3 {
    font-size: 1.5rem;
}

.policy-content h4 {
    font-size: 1.3rem;
}

.policy-content p {
    margin-bottom: 15px;
    text-align: justify;
}

.policy-content ul,
.policy-content ol {
    margin: 15px 0;
    padding-left: 30px;
}

.policy-content li {
    margin-bottom: 8px;
}

.policy-content b {
    font-weight: 700;
    color: var(--medical-blue);
}

.policy-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.policy-content th,
.policy-content td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.policy-content th {
    background: var(--health-gradient);
    color: white;
    font-weight: 600;
}

.policy-content tr:hover {
    background: rgba(76, 175, 80, 0.05);
}

.policy-content a {
    color: var(--health-green);
    text-decoration: none;
    transition: color 0.3s ease;
}

.policy-content a:hover {
    color: var(--medical-blue);
    text-decoration: underline;
}

/* Navigation Styles for Policy Pages */
.health-header {
    background: var(--health-gradient);
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(20px);
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.main-nav {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-nav ul li {
    margin-left: 30px;
}

.main-nav ul li a {
    color: var(--health-white);
    text-decoration: none;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.main-nav ul li a:hover {
    color: var(--health-mint);
    background: rgba(129, 199, 132, 0.2);
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 25px rgba(129, 199, 132, 0.3);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--health-white);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Responsive for Policy Pages */
@media (max-width: 768px) {
    .policy-main {
        padding: 100px 0 60px;
    }
    
    .policy-header h1 {
        font-size: 2.2rem;
    }
    
    .policy-content {
        padding: 25px;
        margin: 0 10px;
    }
    
    .policy-content h1 {
        font-size: 1.8rem;
    }
    
    .policy-content h2 {
        font-size: 1.5rem;
    }
    
    .policy-content h3 {
        font-size: 1.3rem;
    }
    
    .main-nav {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--health-gradient);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
    }
    
    .main-nav.active {
        left: 0;
    }
    
    .main-nav ul {
        flex-direction: column;
    }
    
    .main-nav ul li {
        margin: 1rem 0;
    }
    
    .menu-toggle {
        display: flex;
    }
}
