
    /* Modern CSS Reset & Variables */
    :root {
        --primary-color: #4a9f4a;
        --primary-dark: #3a7f3a;
        --secondary-color: #ffd700;
        --accent-color: #ff6b6b;
        --text-dark: #2c3e50;
        --text-light: #6c757d;
        --bg-light: #f8f9fa;
        --bg-white: #ffffff;
        --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
        --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
        --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
        --gradient-primary: linear-gradient(135deg, #4a9f4a 0%, #3a7f3a 100%);
        --gradient-hero: linear-gradient(135deg, rgba(74, 159, 74, 0.1) 0%, rgba(255, 215, 0, 0.1) 100%);
        --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        --border: #e2e8f0;
        --primary-light: #5aaf5a;
        --primary: var(--primary-color);
    }

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

    html {
        scroll-behavior: smooth;
    }

    body {
        font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
        color: var(--text-dark);
        line-height: 1.6;
        overflow-x: hidden;
        margin: 0;
        padding: 0;
        font-size: 16px; /* Prevents zoom on iOS */
        -webkit-text-size-adjust: 100%;
        -moz-text-size-adjust: 100%;
        -ms-text-size-adjust: 100%;
        text-size-adjust: 100%;
    }

    .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 2rem;
        width: 100%;
        box-sizing: border-box;
    }


    /* Buttons */
    .btn-primary,
    .btn-secondary,
    .btn-outline {
        display: inline-block;
        padding: 0.75rem 2rem;
        border-radius: 50px;
        text-decoration: none;
        font-weight: 600;
        transition: var(--transition);
        border: 2px solid transparent;
        cursor: pointer;
        min-height: 44px;
        box-sizing: border-box;
        text-align: center;
    }

    .btn-primary {
        background: var(--gradient-primary);
        color: white;
        box-shadow: var(--shadow-md);
    }

    .btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: var(--shadow-lg);
    }

    .btn-secondary {
        background: var(--bg-white);
        color: var(--primary-color);
        border-color: var(--primary-color);
    }

    .btn-secondary:hover {
        background: var(--primary-color);
        color: white;
    }

    .btn-outline {
        background: transparent;
        color: var(--primary-color);
        border-color: var(--primary-color);
    }

    .btn-outline:hover {
        background: var(--primary-color);
        color: white;
    }

    /* Hero Section */
    .hero {
        position: relative;
        display: flex;
        align-items: flex-start;
        justify-content: center;
        padding: 2rem 0 4rem;
        overflow: hidden;
    }

    .hero-background {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--gradient-hero);
        z-index: -1;
    }

    .hero-background::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(circle, rgba(74, 159, 74, 0.1) 0%, transparent 70%);
        animation: float 20s ease-in-out infinite;
    }

    @keyframes float {
        0%, 100% { transform: translate(0, 0) rotate(0deg); }
        50% { transform: translate(-50px, -50px) rotate(180deg); }
    }

    .hero-content {
        text-align: center;
        max-width: 800px;
        animation: fadeInUp 1s ease-out;
        margin-top: 0;
        padding-top: 0;
        width: 100%;
        box-sizing: border-box;
        overflow-wrap: break-word;
        position: relative;
    }

    .lang-toggle {
        position: absolute;
        top: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.9);
        color: var(--primary-color);
        border: 2px solid var(--primary-color);
        padding: 0.5rem 1rem;
        border-radius: 50px;
        font-weight: 600;
        font-size: 0.9rem;
        cursor: pointer;
        transition: var(--transition);
        display: flex;
        align-items: center;
        gap: 0.5rem;
        box-shadow: var(--shadow-sm);
    }

    .lang-toggle:hover {
        background: var(--primary-color);
        color: white;
        transform: translateY(-2px);
        box-shadow: var(--shadow-md);
    }

    .hero-title span {
        display: inline-block;
    }

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

    .hero-title {
        font-family: 'Playfair Display', serif;
        font-size: clamp(2rem, 4.5vw, 4rem);
        font-weight: 700;
        color: var(--text-dark);
        margin-bottom: 1rem;
        letter-spacing: 1px;
        word-break: keep-all;
        overflow-wrap: normal;
        hyphens: none;
    }

    .hero-subtitle {
        font-size: clamp(1.25rem, 2.5vw, 1.75rem);
        color: var(--primary-color);
        font-weight: 600;
        margin-bottom: 1.5rem;
    }

    .hero-description {
        font-size: 1.125rem;
        color: var(--text-light);
        margin-bottom: 2rem;
        line-height: 1.8;
    }

    .hero-actions {
        display: flex;
        gap: 1rem;
        justify-content: center;
        flex-wrap: wrap;
        margin-bottom: 2rem;
    }

    .notice-box {
        background: rgba(255, 215, 0, 0.1);
        border-left: 4px solid var(--secondary-color);
        padding: 1rem 1.5rem;
        border-radius: 8px;
        margin-top: 2rem;
    }

    .notice-title {
        font-weight: 700;
        color: var(--text-dark);
        margin-bottom: 0.5rem;
    }

    /* Features Section */
    .features {
        padding: 6rem 0;
        background: var(--bg-white);
    }

    .features-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
    }

    .feature-card {
        background: var(--bg-white);
        padding: 2.5rem;
        border-radius: 16px;
        box-shadow: var(--shadow-md);
        transition: var(--transition);
        text-align: center;
    }

    .feature-card:hover {
        transform: translateY(-8px);
        box-shadow: var(--shadow-lg);
    }

    .feature-icon {
        font-size: 3rem;
        margin-bottom: 1rem;
    }

    .feature-card h2 {
        font-size: 1.5rem;
        color: var(--text-dark);
        margin-bottom: 1rem;
        font-weight: 600;
    }

    .feature-card p {
        color: var(--text-light);
        margin-bottom: 1.5rem;
    }

    .feature-link {
        color: var(--primary-color);
        text-decoration: none;
        font-weight: 600;
        transition: var(--transition);
        display: inline-block;
        min-height: 44px;
        padding: 0.5rem 0;
        cursor: pointer;
    }

    .feature-link:hover {
        color: var(--primary-dark);
        transform: translateX(4px);
    }

    /* Expandable Article Content */
    .article-content-expandable {
        margin-top: 2rem;
        padding-top: 2rem;
        border-top: 2px solid var(--border);
        display: none;
        overflow: hidden;
        transition: all 0.3s ease;
        max-height: 0;
    }

    .article-content-expandable.expanded {
        display: block;
        max-height: 10000px;
        animation: slideDown 0.5s ease-out;
    }

    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .article-content-expandable h3 {
        font-size: 1.5rem;
        color: var(--primary-dark);
        margin-bottom: 1rem;
        margin-top: 1.5rem;
        font-weight: 600;
    }

    .article-content-expandable h3:first-of-type {
        margin-top: 0;
    }

    .article-content-expandable .intro {
        color: var(--text-light);
        margin-bottom: 1.5rem;
        font-size: 1.05rem;
        line-height: 1.8;
    }

    .article-content-expandable p {
        color: var(--text-light);
        margin-bottom: 1rem;
        line-height: 1.8;
    }

    .article-content-expandable ul {
        list-style: none;
        padding-left: 0;
        margin: 1rem 0;
    }

    .article-content-expandable ul li {
        padding: 0.5rem 0;
        padding-left: 1.5rem;
        position: relative;
        color: var(--text-light);
        line-height: 1.8;
    }

    .article-content-expandable ul li:before {
        content: "•";
        color: var(--primary-color);
        font-weight: bold;
        position: absolute;
        left: 0;
    }

    .system-section {
        margin-bottom: 1.5rem;
        padding: 1.25rem;
        background: var(--bg-light);
        border-radius: 8px;
        border-left: 4px solid;
    }

    .system-section.yellow {
        border-left-color: #fbbf24;
        background: rgba(251, 191, 36, 0.05);
    }

    .system-section.green {
        border-left-color: var(--primary-color);
        background: rgba(74, 159, 74, 0.05);
    }

    .system-section.red {
        border-left-color: #ef4444;
        background: rgba(239, 68, 68, 0.05);
    }

    .system-section h4 {
        font-size: 1.15rem;
        color: var(--primary-dark);
        margin-bottom: 0.75rem;
        font-weight: 600;
    }

    .system-section p {
        color: var(--text-light);
        margin: 0.5rem 0;
        line-height: 1.8;
    }

    /* Products Grid for Affiliates */
    .products-grid-expandable {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 1.5rem;
        margin-top: 2rem;
    }

    .product-card-expandable {
        background: var(--bg-light);
        border: 1px solid var(--border);
        border-radius: 12px;
        padding: 1.5rem;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        display: flex;
        flex-direction: column;
    }

    .product-card-expandable:hover {
        transform: translateY(-3px);
        box-shadow: var(--shadow-md);
        border-color: var(--primary-light);
    }

    .product-card-expandable h4 {
        font-size: 1.1rem;
        color: var(--primary-dark);
        margin-bottom: 0.75rem;
        line-height: 1.3;
        font-weight: 600;
    }

    .product-card-expandable p {
        color: var(--text-light);
        font-size: 0.9rem;
        margin-bottom: 1rem;
        flex-grow: 1;
    }

    .btn-primary-small {
        display: inline-block;
        padding: 0.6rem 1.2rem;
        border-radius: 8px;
        text-decoration: none;
        font-weight: 600;
        font-size: 0.9rem;
        transition: var(--transition);
        background: var(--gradient-primary);
        color: white;
        box-shadow: var(--shadow-sm);
        text-align: center;
        width: 100%;
        box-sizing: border-box;
    }

    .btn-primary-small:hover {
        transform: translateY(-2px);
        box-shadow: var(--shadow-md);
    }

    @media (max-width: 768px) {
        .products-grid-expandable {
            grid-template-columns: 1fr;
            gap: 1rem;
        }

        .product-card-expandable {
            padding: 1.25rem;
        }
    }

    /* Affiliate Business Cards */
    .affiliate-category {
        margin-top: 3rem;
        padding-top: 2rem;
        border-top: 2px solid var(--border);
    }

    .affiliate-category:first-of-type {
        border-top: none;
        padding-top: 0;
        margin-top: 2rem;
    }

    .affiliate-category h3 {
        font-size: 1.5rem;
        color: var(--primary-dark);
        margin-bottom: 0.75rem;
        font-weight: 600;
    }

    .category-intro {
        color: var(--text-light);
        margin-bottom: 1.5rem;
        font-size: 1rem;
        line-height: 1.7;
    }

    .affiliate-business-card {
        background: var(--bg-light);
        border: 1px solid var(--border);
        border-radius: 12px;
        padding: 1.5rem;
        margin-bottom: 1.5rem;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .affiliate-business-card:hover {
        transform: translateY(-2px);
        box-shadow: var(--shadow-md);
        border-color: var(--primary-light);
    }

    .affiliate-business-card h4 {
        font-size: 1.3rem;
        color: var(--primary-dark);
        margin-bottom: 0.75rem;
        font-weight: 600;
    }

    .affiliate-description {
        color: var(--text-light);
        margin-bottom: 1rem;
        line-height: 1.7;
    }

    .affiliate-info {
        margin-top: 1rem;
    }

    .affiliate-info p {
        color: var(--text-light);
        margin-bottom: 0.5rem;
        line-height: 1.7;
        font-size: 0.95rem;
    }

    .affiliate-info strong {
        color: var(--text-dark);
        font-weight: 600;
    }

    .affiliate-info a {
        color: var(--primary-color);
        text-decoration: none;
        transition: var(--transition);
    }

    .affiliate-info a:hover {
        color: var(--primary-dark);
        text-decoration: underline;
    }

    @media (max-width: 768px) {
        .affiliate-business-card {
            padding: 1.25rem;
        }

        .affiliate-business-card h4 {
            font-size: 1.2rem;
        }
    }

    /* Smoothies Section */
    .smoothies {
        padding: 6rem 0;
        background: var(--bg-white);
    }

    .smoothie-card {
        background: var(--bg-white);
        border-radius: 16px;
        box-shadow: var(--shadow-md);
        padding: 2.5rem;
        max-width: 900px;
        margin: 0 auto;
        transition: var(--transition);
    }

    .smoothie-card:hover {
        box-shadow: var(--shadow-lg);
    }

    .smoothie-header {
        display: flex;
        align-items: flex-start;
        gap: 1.5rem;
        margin-bottom: 1rem;
    }

    .smoothie-icon {
        font-size: 3rem;
        flex-shrink: 0;
    }

    .smoothie-header > div:not(.smoothie-icon) {
        flex: 1;
    }

    .smoothie-header h3 {
        font-size: 1.75rem;
        color: var(--primary-dark);
        margin-bottom: 0.75rem;
        font-weight: 600;
    }

    .smoothie-intro {
        color: var(--text-light);
        font-size: 1.05rem;
        line-height: 1.7;
        margin-bottom: 0;
    }

    .recipe-section {
        margin-bottom: 2rem;
        padding-top: 1.5rem;
        border-top: 2px solid var(--border);
    }

    .recipe-section:first-of-type {
        border-top: none;
        padding-top: 0;
    }

    .recipe-section h4 {
        font-size: 1.3rem;
        color: var(--primary-dark);
        margin-bottom: 1rem;
        font-weight: 600;
    }

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

    .recipe-section ul li {
        padding: 0.75rem 0;
        padding-left: 1.5rem;
        position: relative;
        color: var(--text-light);
        line-height: 1.8;
    }

    .recipe-section ul li:before {
        content: "•";
        color: var(--primary-color);
        font-weight: bold;
        position: absolute;
        left: 0;
        font-size: 1.2rem;
    }

    .recipe-steps {
        background: var(--bg-light);
        padding: 1.5rem;
        border-radius: 8px;
        margin-top: 1.5rem;
        border-left: 4px solid var(--primary-color);
    }

    .recipe-steps h4 {
        margin-top: 0;
        margin-bottom: 1rem;
    }

    .recipe-steps ol {
        padding-left: 1.5rem;
        margin: 0.75rem 0 0 0;
    }

    .recipe-steps ol li {
        padding: 0.5rem 0;
        color: var(--text-light);
        line-height: 1.8;
    }

    .recipe-link {
        margin-top: 2rem;
        padding-top: 1.5rem;
        border-top: 1px solid var(--border);
        text-align: center;
    }

    .recipe-link p {
        color: var(--text-light);
        margin: 0;
    }

    .recipe-link a {
        color: var(--primary-color);
        text-decoration: none;
        font-weight: 600;
        transition: var(--transition);
    }

    .recipe-link a:hover {
        color: var(--primary-dark);
        text-decoration: underline;
    }

    @media (max-width: 768px) {
        .smoothie-header {
            flex-direction: column;
            gap: 1rem;
        }

        .smoothie-card {
            padding: 1.5rem;
        }

        .smoothie-header h3 {
            font-size: 1.5rem;
        }
    }

    /* Services Section */
    .services {
        padding: 6rem 0;
        background: var(--bg-light);
    }

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

    .section-header h2 {
        font-family: 'Playfair Display', serif;
        font-size: clamp(2rem, 4vw, 2.5rem);
        color: var(--text-dark);
        margin-bottom: 0.5rem;
    }

    .section-header p {
        font-size: 1.125rem;
        color: var(--text-light);
    }

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

    .service-card {
        background: var(--bg-white);
        padding: 2.5rem;
        border-radius: 16px;
        box-shadow: var(--shadow-sm);
        transition: var(--transition);
    }

    .service-card:hover {
        box-shadow: var(--shadow-md);
        transform: translateY(-4px);
    }

    .service-card h3 {
        font-size: 1.5rem;
        color: var(--primary-color);
        margin-bottom: 1rem;
        font-weight: 600;
    }

    .service-card p {
        color: var(--text-light);
        line-height: 1.8;
    }

    /* About Section */
    .about {
        padding: 6rem 0;
        background: var(--bg-white);
    }

    .about-content {
        max-width: 800px;
        margin: 0 auto;
    }

    .about-content h2 {
        font-family: 'Playfair Display', serif;
        font-size: clamp(2rem, 4vw, 2.5rem);
        color: var(--text-dark);
        margin-bottom: 2rem;
        text-align: center;
    }

    .about-text {
        margin-bottom: 2rem;
    }

    .about-text p {
        color: var(--text-light);
        margin-bottom: 1.5rem;
        line-height: 1.8;
        font-size: 1.0625rem;
    }

    .about-content .btn-primary {
        display: block;
        text-align: center;
        max-width: 300px;
        margin: 2rem auto 0;
    }

    /* Hours Section */
    .hours {
        padding: 6rem 0;
        background: var(--gradient-primary);
        color: white;
    }

    .hours-card {
        text-align: center;
        max-width: 600px;
        margin: 0 auto;
        padding: 3rem;
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        border-radius: 16px;
        box-shadow: var(--shadow-lg);
    }

    .hours-card h2 {
        font-family: 'Playfair Display', serif;
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .hours-text {
        font-size: 1.5rem;
        margin-bottom: 2rem;
        font-weight: 600;
    }

    .hours-card .btn-primary {
        background: white;
        color: var(--primary-color);
    }

    .hours-card .btn-primary:hover {
        background: var(--bg-light);
    }

    /* Contact Section */
    .contact {
        padding: 6rem 0;
        background: var(--bg-light);
    }

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

    .contact-info h2 {
        font-family: 'Playfair Display', serif;
        font-size: 2rem;
        color: var(--text-dark);
        margin-bottom: 2rem;
    }

    .contact-details {
        display: flex;
        flex-direction: column;
        gap: 0;
    }

    .contact-name {
        color: var(--text-dark);
        font-size: 1.25rem;
        font-weight: 600;
        margin-bottom: 0;
    }

    .contact-address,
    .contact-email,
    .contact-phone {
        color: var(--text-light);
        font-size: 1.125rem;
    }

    .contact-email a {
        color: var(--primary-color);
        text-decoration: none;
        transition: var(--transition);
    }

    .contact-email a:hover {
        color: var(--primary-dark);
        text-decoration: underline;
    }

    .contact-image {
        height: 400px;
    }

    .image-placeholder {
        width: 100%;
        height: 100%;
        background: var(--gradient-hero);
        border-radius: 16px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--text-light);
        font-size: 1.125rem;
    }

    /* Footer */
    .footer {
        background: var(--text-dark);
        color: white;
        padding: 3rem 0 2rem;
    }

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

    .footer-section h3 {
        margin-bottom: 1rem;
        font-size: 1.25rem;
    }

    .subscribe-form {
        display: flex;
        gap: 0.5rem;
        max-width: 400px;
    }

    .subscribe-form input {
        flex: 1;
        padding: 0.75rem 1rem;
        border: 2px solid rgba(255, 255, 255, 0.2);
        border-radius: 50px;
        background: rgba(255, 255, 255, 0.1);
        color: white;
        font-size: 1rem;
    }

    .subscribe-form input::placeholder {
        color: rgba(255, 255, 255, 0.6);
    }

    .subscribe-form input:focus {
        outline: none;
        border-color: var(--primary-color);
    }

    .subscribe-form .btn-primary {
        padding: 0.75rem 1.5rem;
    }

    .footer-phone {
        margin-bottom: 0.5rem;
        font-size: 1.125rem;
    }

    .footer-copyright {
        color: rgba(255, 255, 255, 0.7);
        font-size: 0.875rem;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
        .hero {
            padding: 1.5rem 0 3rem;
        }

        .hero-actions {
            flex-direction: column;
            gap: 0.75rem;
        }

        .hero-actions .btn-primary,
        .hero-actions .btn-outline {
            width: 100%;
            text-align: center;
            min-height: 44px;
        }

        .features-grid,
        .services-grid {
            grid-template-columns: 1fr;
            gap: 1.5rem;
        }

        .feature-card {
            padding: 2rem 1.5rem;
        }

        .service-card {
            padding: 2rem 1.5rem;
        }

        .contact-wrapper {
            grid-template-columns: 1fr;
            gap: 2rem;
        }

        .contact-image {
            height: 300px;
        }

        .footer-content {
            grid-template-columns: 1fr;
            gap: 2rem;
        }

        .subscribe-form {
            flex-direction: column;
            gap: 0.75rem;
        }

        .subscribe-form input,
        .subscribe-form .btn-primary {
            width: 100%;
            min-height: 44px;
        }

        .container {
            padding: 0 1.5rem;
        }

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

        .section-header h2 {
            font-size: 2rem;
        }

        .about-content {
            padding: 0 1rem;
        }

        .hours-card {
            padding: 2.5rem 2rem;
        }

        .smoothie-header {
            flex-direction: column;
            gap: 1rem;
        }

        .smoothie-card {
            padding: 2rem 1.5rem;
        }

        .article-content-expandable {
            margin-top: 1.5rem;
            padding-top: 1.5rem;
        }

        .article-content-expandable h3 {
            font-size: 1.4rem;
            margin-top: 1.25rem;
        }

        .article-content-expandable .intro {
            font-size: 1.05rem;
        }

        .system-section {
            padding: 1.25rem;
            margin-bottom: 1.25rem;
        }

        .system-section h4 {
            font-size: 1.15rem;
        }

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

        .recipe-section h4 {
            font-size: 1.25rem;
        }

        .products-grid-expandable {
            grid-template-columns: 1fr;
            gap: 1.25rem;
        }

        .affiliate-category {
            margin-top: 2rem;
            padding-top: 1.5rem;
        }

        .affiliate-business-card {
            padding: 1.5rem;
            margin-bottom: 1.25rem;
        }

        /* Ensure all text is readable */
        body {
            font-size: 16px;
        }

        /* Better spacing for expandable content */
        .article-content-expandable ul,
        .article-content-expandable ol {
            padding-left: 1.25rem;
        }

        .article-content-expandable ul li,
        .article-content-expandable ol li {
            padding: 0.5rem 0;
            line-height: 1.7;
        }
    }

    @media (max-width: 480px) {
        .container {
            padding: 0 1rem;
        }

        .hero {
            padding: 1rem 0 2rem;
        }

        .hero-title {
            font-size: clamp(1.5rem, 7vw, 2rem);
            line-height: 1.2;
            letter-spacing: 0.5px;
            word-break: keep-all;
            overflow-wrap: normal;
        }

        .hero-title span {
            font-size: inherit;
        }

        /* On very small screens, allow the title to scale down more */
        @media (max-width: 360px) {
            .hero-title {
                font-size: clamp(1.25rem, 6vw, 1.75rem);
                letter-spacing: 0.25px;
            }
        }

        .hero-subtitle {
            font-size: 1.125rem;
        }

        .hero-description {
            font-size: 1rem;
            line-height: 1.7;
        }

        .feature-card,
        .service-card {
            padding: 1.5rem;
        }

        .feature-card h2,
        .service-card h3 {
            font-size: 1.3rem;
            line-height: 1.3;
        }

        .feature-card p,
        .service-card p {
            font-size: 0.95rem;
        }

        .section-header h2 {
            font-size: 1.75rem;
        }

        .section-header p {
            font-size: 1rem;
        }

        .about-content h2 {
            font-size: 1.75rem;
        }

        .about-text p {
            font-size: 1rem;
        }

        .hours-card {
            padding: 2rem 1.5rem;
        }

        .hours-card h2 {
            font-size: 1.75rem;
        }

        .hours-text {
            font-size: 1.25rem;
        }

        .contact-info h2 {
            font-size: 1.75rem;
        }

        .contact-details {
            font-size: 1rem;
        }

        .smoothie-card {
            padding: 1.25rem;
        }

        .smoothie-header h3 {
            font-size: 1.3rem;
        }

        .smoothie-intro {
            font-size: 0.95rem;
        }

        .article-content-expandable h3 {
            font-size: 1.3rem;
        }

        .article-content-expandable .intro {
            font-size: 1rem;
        }

        .article-content-expandable p {
            font-size: 0.95rem;
        }

        .system-section {
            padding: 1rem;
        }

        .system-section h4 {
            font-size: 1.1rem;
        }

        .system-section p {
            font-size: 0.9rem;
        }

        .article-content-expandable ul li {
            font-size: 0.9rem;
            padding: 0.4rem 0;
        }

        .recipe-section h4 {
            font-size: 1.2rem;
        }

        .recipe-section ul li {
            font-size: 0.9rem;
        }

        .recipe-steps {
            padding: 1rem;
        }

        .recipe-steps ol li {
            font-size: 0.9rem;
        }

        .product-card-expandable {
            padding: 1rem;
        }

        .product-card-expandable h4 {
            font-size: 1rem;
        }

        .product-card-expandable p {
            font-size: 0.85rem;
        }

        .affiliate-business-card {
            padding: 1rem;
        }

        .affiliate-business-card h4 {
            font-size: 1.1rem;
        }

        .affiliate-description {
            font-size: 0.9rem;
        }

        .affiliate-info p {
            font-size: 0.9rem;
        }

        .affiliate-category h3 {
            font-size: 1.3rem;
        }

        .category-intro {
            font-size: 0.95rem;
        }

        /* Ensure all buttons are touch-friendly */
        .btn-primary,
        .btn-secondary,
        .btn-outline,
        .btn-primary-small,
        .feature-link {
            min-height: 44px;
            min-width: 44px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }

        /* Better spacing for touch targets */
        .hero-actions {
            gap: 0.75rem;
        }

        .article-actions {
            gap: 0.5rem;
        }

        /* Prevent text from being too small */
        * {
            -webkit-text-size-adjust: 100%;
            -moz-text-size-adjust: 100%;
            -ms-text-size-adjust: 100%;
            text-size-adjust: 100%;
        }

        /* Ensure links are readable */
        a {
            word-break: break-word;
            overflow-wrap: break-word;
        }

        /* Better line spacing for readability */
        p, li {
            line-height: 1.7;
        }

        /* Ensure expandable content is readable */
        .article-content-expandable {
            font-size: 16px;
        }

        /* Better spacing for lists */
        .article-content-expandable ul,
        .article-content-expandable ol {
            margin: 1rem 0;
        }

        /* Ensure headings don't break awkwardly */
        h1, h2, h3, h4 {
            word-wrap: break-word;
            overflow-wrap: break-word;
        }

        /* Better padding for sections */
        .features,
        .services,
        .about,
        .hours,
        .contact,
        .smoothies {
            padding: 4rem 0;
        }

        /* Footer mobile optimization */
        .footer {
            padding: 2.5rem 0 1.5rem;
        }

        .footer-section h3 {
            font-size: 1.2rem;
        }

        .footer-phone,
        .footer-copyright {
            font-size: 0.9rem;
        }

        /* Notice box mobile */
        .notice-box {
            padding: 1rem;
            margin-top: 1.5rem;
        }

        .notice-title {
            font-size: 1rem;
        }

        .notice-box p {
            font-size: 0.95rem;
        }
    }

    /* Site-wide navigation */
    .site-nav {
        background: var(--text-dark);
        padding: 0.75rem 0;
        position: sticky;
        top: 0;
        z-index: 100;
        box-shadow: var(--shadow-md);
    }
    .site-nav-inner {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 1rem;
    }
    .site-nav a {
        color: white;
        text-decoration: none;
        font-weight: 500;
        font-size: 0.95rem;
        padding: 0.35rem 0.5rem;
        border-radius: 6px;
        transition: var(--transition);
    }
    .site-nav a:hover {
        background: rgba(255,255,255,0.15);
    }
    .site-nav-logo {
        font-weight: 700;
        margin-right: 0.5rem;
    }

    /* AI Chat widget */
    #chat-widget {
        position: fixed;
        bottom: 1.5rem;
        right: 1.5rem;
        z-index: 999;
        font-family: inherit;
    }
    #chat-toggle {
        padding: 0.75rem 1.25rem;
        background: var(--gradient-primary);
        color: white;
        border: none;
        border-radius: 50px;
        font-weight: 600;
        font-size: 0.95rem;
        cursor: pointer;
        box-shadow: var(--shadow-lg);
        transition: var(--transition);
    }
    #chat-toggle:hover {
        transform: translateY(-2px);
    }
    #chat-frame-wrap {
        position: absolute;
        bottom: 3rem;
        right: 0;
        width: 380px;
        max-width: calc(100vw - 2rem);
        height: 520px;
        background: var(--bg-white);
        border-radius: 12px;
        box-shadow: var(--shadow-lg);
        overflow: hidden;
        display: flex;
        flex-direction: column;
        border: 1px solid var(--border);
    }
    #chat-frame-wrap iframe {
        flex: 1;
        width: 100%;
        border: none;
    }
    #chat-close {
        padding: 0.5rem;
        background: var(--bg-light);
        border: none;
        cursor: pointer;
        font-size: 0.9rem;
    }
    @media (max-width: 768px) {
        .site-nav-inner { gap: 0.5rem; }
        .site-nav a { font-size: 0.85rem; }
        #chat-frame-wrap { width: 320px; height: 450px; }
    }

    /* Affiliate business grid (homepage) */
    .affiliate-business-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
        margin-top: 1rem;
    }

    /* Inner-page hero (About, etc.) – matches homepage hero look */
    .page-hero {
        position: relative;
        padding: 2rem 0 4rem;
        overflow: hidden;
    }
    .page-hero .hero-background {
        position: absolute;
        top: 0; left: 0; right: 0; bottom: 0;
        background: var(--gradient-hero);
        z-index: -1;
    }
    .page-hero .hero-background::before {
        content: '';
        position: absolute;
        top: -50%; right: -50%;
        width: 200%; height: 200%;
        background: radial-gradient(circle, rgba(74, 159, 74, 0.1) 0%, transparent 70%);
        animation: float 20s ease-in-out infinite;
    }
    .page-hero .hero-content {
        text-align: center;
        max-width: 800px;
        margin: 0 auto;
        position: relative;
    }
    .page-hero .hero-title {
        font-family: 'Playfair Display', serif;
        font-size: clamp(2rem, 4.5vw, 4rem);
        font-weight: 700;
        color: var(--text-dark);
        margin-bottom: 1rem;
        letter-spacing: 1px;
    }
    .page-hero .hero-subtitle {
        font-size: clamp(1.25rem, 2.5vw, 1.75rem);
        color: var(--primary-color);
        font-weight: 600;
    }
    .page-hero .lang-toggle {
        position: absolute;
        top: 0; right: 0;
        background: rgba(255, 255, 255, 0.9);
        color: var(--primary-color);
        border: 2px solid var(--primary-color);
        padding: 0.5rem 1rem;
        border-radius: 50px;
        font-weight: 600;
        font-size: 0.9rem;
        cursor: pointer;
        transition: var(--transition);
        display: flex;
        align-items: center;
        gap: 0.5rem;
        box-shadow: var(--shadow-sm);
    }
    .page-hero .lang-toggle:hover {
        background: var(--primary-color);
        color: white;
        transform: translateY(-2px);
        box-shadow: var(--shadow-md);
    }
    .page-hero .home-button {
        position: absolute;
        top: 0; left: 0;
        background: rgba(255, 255, 255, 0.9);
        color: var(--primary-color);
        border: 2px solid var(--primary-color);
        padding: 0.5rem 1rem;
        border-radius: 50px;
        text-decoration: none;
        font-weight: 600;
        font-size: 0.9rem;
        transition: var(--transition);
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        box-shadow: var(--shadow-sm);
    }
    .page-hero .home-button:hover {
        background: var(--primary-color);
        color: white;
        transform: translateY(-2px);
        box-shadow: var(--shadow-md);
    }
    @media (max-width: 768px) {
        .page-hero { padding: 1.5rem 0 3rem; }
    }

    /* About page sections */
    .about-section {
        background: var(--bg-white);
        border-radius: 16px;
        border: 1px solid var(--border);
        box-shadow: var(--shadow-md);
        padding: 2.5rem;
        margin-bottom: 2rem;
    }
    .about-section h2 {
        font-size: 2rem;
        color: var(--primary-dark);
        margin-bottom: 1.5rem;
        line-height: 1.3;
        font-family: 'Playfair Display', serif;
    }
    .about-section h3 {
        font-size: 1.5rem;
        color: var(--primary-dark);
        margin-top: 2rem;
        margin-bottom: 1rem;
        font-family: 'Playfair Display', serif;
    }
    .about-section p {
        color: var(--text-light);
        margin-bottom: 1.5rem;
        font-size: 1.05rem;
    }
    .about-section .intro {
        font-size: 1.15rem;
        color: var(--text-dark);
        font-weight: 500;
        margin-bottom: 2rem;
        line-height: 1.8;
    }
    .philosophy-box {
        background: var(--bg-light);
        padding: 2rem;
        border-radius: 12px;
        border-left: 4px solid var(--primary-color);
        margin: 2rem 0;
    }
    .philosophy-box h4 {
        font-size: 1.2rem;
        color: var(--primary-dark);
        margin-bottom: 1rem;
        font-weight: 600;
    }
    .philosophy-box p {
        color: var(--text-light);
        margin-bottom: 0.75rem;
    }
    .expertise-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
        margin: 2rem 0;
    }
    .expertise-card {
        background: var(--bg-light);
        padding: 1.5rem;
        border-radius: 12px;
        border: 1px solid var(--border);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    .expertise-card:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-lg);
        border-color: var(--primary-color);
    }
    .expertise-card h4 {
        font-size: 1.2rem;
        color: var(--primary-dark);
        margin-bottom: 0.75rem;
        font-weight: 600;
    }
    .expertise-card p {
        color: var(--text-light);
        font-size: 0.95rem;
        margin: 0;
    }
    .story-section {
        background: linear-gradient(135deg, rgba(74, 159, 74, 0.08), rgba(74, 159, 74, 0.03));
        padding: 2rem;
        border-radius: 12px;
        border-left: 4px solid var(--primary-color);
        margin: 2rem 0;
    }
    .story-section p {
        color: var(--text-light);
        margin: 0.75rem 0;
        font-size: 1.05rem;
    }
    .about-section .contact-info {
        background: var(--bg-white);
        border: 2px solid var(--primary-color);
        border-radius: 12px;
        padding: 2rem;
        margin: 2rem 0;
        text-align: center;
    }
    .about-section .contact-info h3 {
        color: var(--primary-dark);
        margin-bottom: 1.5rem;
        font-family: 'Playfair Display', serif;
    }
    .about-section .contact-info p {
        color: var(--text-light);
        margin: 0.75rem 0;
        font-size: 1.1rem;
    }
    .about-section .contact-info a {
        color: var(--primary-color);
        text-decoration: none;
        font-weight: 600;
    }
    .about-section .contact-info a:hover {
        text-decoration: underline;
    }

    /* Articles & Resources page – homepage design tokens */
    .articles-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
        gap: 2rem;
        margin-top: 3rem;
    }
    .article-card {
        background: var(--bg-white);
        border-radius: 16px;
        border: 1px solid var(--border);
        box-shadow: var(--shadow-sm);
        padding: 2rem;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        display: flex;
        flex-direction: column;
    }
    .article-card:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-md);
        border-color: var(--primary-light);
    }
    .article-card.featured {
        grid-column: span 2;
    }
    .article-card h2 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
        color: var(--primary-dark);
        line-height: 1.3;
        font-family: 'Playfair Display', serif;
    }
    .article-card p {
        color: var(--text-light);
        margin-bottom: 1.5rem;
        flex-grow: 1;
    }
    .article-actions {
        display: flex;
        flex-wrap: wrap;
        gap: 0.75rem;
        margin-top: auto;
    }
    .btn {
        display: inline-flex;
        align-items: center;
        padding: 0.65rem 1.4rem;
        border-radius: 8px;
        font-weight: 600;
        font-size: 0.95rem;
        text-decoration: none;
        transition: var(--transition);
        border: 2px solid transparent;
        cursor: pointer;
    }
    .btn.btn-primary {
        background: var(--gradient-primary);
        color: white;
        box-shadow: var(--shadow-sm);
    }
    .btn.btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: var(--shadow-md);
    }
    .btn.btn-secondary, .btn.btn-outline {
        background: transparent;
        color: var(--primary-color);
        border-color: var(--primary-color);
    }
    .btn.btn-secondary:hover, .btn.btn-outline:hover {
        background: var(--primary-color);
        color: white;
    }

    /* Articles & Resources – sidebar and video grid */
    .sidebar {
        position: sticky;
        top: 4rem;
        padding: 1rem;
        background: var(--bg-light);
        border-radius: 12px;
        border: 1px solid var(--border);
        margin-bottom: 2rem;
    }
    .sidebar h3 {
        font-size: 1rem;
        color: var(--text-dark);
        margin-bottom: 0.75rem;
        font-family: 'Inter', sans-serif;
    }
    .sidebar .nav-list {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    .sidebar .nav-list a {
        color: var(--text-light);
        text-decoration: none;
        font-size: 0.9rem;
        display: block;
        padding: 0.35rem 0;
        transition: var(--transition);
    }
    .sidebar .nav-list a:hover,
    .sidebar .nav-list a.active {
        color: var(--primary-color);
        font-weight: 600;
    }
    .videos-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 1.5rem;
        margin-top: 1.5rem;
    }
    .video-card {
        background: var(--bg-white);
        border-radius: 16px;
        border: 1px solid var(--border);
        box-shadow: var(--shadow-sm);
        overflow: hidden;
        transition: var(--transition);
    }
    .video-card:hover {
        box-shadow: var(--shadow-md);
        border-color: var(--primary-light);
    }
    .video-player-wrapper {
        position: relative;
        padding-bottom: 56.25%;
        height: 0;
        overflow: hidden;
    }
    .video-player-wrapper iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border: none;
    }
    .video-archive-section {
        margin-bottom: 3rem;
    }
    .video-archive-section h2 {
        font-family: 'Playfair Display', serif;
        color: var(--text-dark);
        margin-bottom: 0.5rem;
    }
    .video-archive-section p {
        color: var(--text-light);
        margin-bottom: 1rem;
    }
    .video-card-content {
        padding: 1.25rem;
    }
    .video-card-content h3 {
        font-size: 1.15rem;
        color: var(--primary-dark);
        margin-bottom: 0.5rem;
    }
    .video-card-content p {
        color: var(--text-light);
        font-size: 0.95rem;
        margin-bottom: 0.5rem;
    }
    .video-meta {
        display: flex;
        flex-wrap: wrap;
        gap: 0.5rem;
        font-size: 0.85rem;
        color: var(--text-light);
    }
    .recipe-content,
    .article-content {
        margin-top: 1.5rem;
        padding-top: 1.5rem;
        border-top: 2px solid var(--border);
        display: none;
        overflow: hidden;
        transition: all 0.3s ease;
    }
    .recipe-content.expanded,
    .article-content.expanded {
        display: block;
    }

    /* Continuing Ed landing page */
    .landing-hero {
        background: var(--gradient-primary);
        color: white;
        padding: 4rem 2rem;
        text-align: center;
        margin-bottom: 3rem;
    }
    .landing-hero h1 {
        font-family: 'Playfair Display', serif;
        font-size: clamp(2rem, 4vw, 3rem);
        font-weight: 700;
        margin-bottom: 1rem;
        color: white;
    }
    .landing-hero .subtitle {
        font-size: 1.5rem;
        margin-bottom: 2rem;
        opacity: 0.95;
    }
    .landing-hero .cta-button {
        display: inline-block;
        background: white;
        color: var(--primary-color);
        padding: 1.2rem 3rem;
        border-radius: 50px;
        text-decoration: none;
        font-size: 1.2rem;
        font-weight: 600;
        margin: 1rem;
        transition: var(--transition);
        box-shadow: var(--shadow-md);
    }
    .landing-hero .cta-button:hover {
        transform: translateY(-3px);
        box-shadow: var(--shadow-lg);
    }
    .landing-hero .secondary-button {
        background: transparent;
        color: white;
        border: 2px solid white;
    }
    .landing-hero .secondary-button:hover {
        background: white;
        color: var(--primary-color);
    }
    .landing-content {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 2rem;
    }
    .course-info-section {
        background: var(--bg-light);
        padding: 3rem 2rem;
        margin: 3rem 0;
        border-radius: 16px;
    }
    .course-info-section h2 {
        font-family: 'Playfair Display', serif;
        color: var(--primary-color);
        text-align: center;
        margin-bottom: 2rem;
        font-weight: 600;
    }
    .info-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2rem;
    }
    .info-item {
        background: var(--bg-white);
        padding: 1.5rem;
        border-radius: 12px;
        border-left: 4px solid var(--primary-color);
    }
    .info-item strong {
        color: var(--primary-color);
        display: block;
        margin-bottom: 0.5rem;
        font-weight: 600;
    }
    .instructor-section, .testimonial-section, .pricing-section, .faq-section {
        background: var(--bg-white);
        padding: 3rem 2rem;
        margin: 3rem 0;
        border-radius: 16px;
        box-shadow: var(--shadow-sm);
    }
    .testimonial-section {
        background: var(--gradient-primary);
        color: white;
    }
    .instructor-section h2, .pricing-section h2, .faq-section h2 {
        font-family: 'Playfair Display', serif;
        color: var(--primary-color);
        margin-bottom: 1.5rem;
        font-weight: 600;
    }
    .testimonial-section h2, .cta-section h2 {
        color: white;
        font-family: 'Playfair Display', serif;
    }
    .cta-section {
        background: var(--gradient-primary);
        color: white;
        padding: 4rem 2rem;
        text-align: center;
        margin: 3rem 0;
        border-radius: 16px;
    }
    .pricing-box {
        background: var(--bg-light);
        padding: 2rem;
        border-radius: 12px;
        max-width: 500px;
        margin: 0 auto;
    }
    .faq-item {
        background: var(--bg-light);
        padding: 1.5rem;
        margin-bottom: 1rem;
        border-radius: 12px;
        border-left: 4px solid var(--primary-color);
    }