        :root {
            --fugo-green: #00E63B;
            --fugo-green-dark: #00B048;
            --text-gray: rgba(136, 136, 136, 0.7);
            --fugo-secondary: #EAFFDC;
            --fugo-primary: #004110;
        }

        * {
            box-sizing: border-box;
            -webkit-tap-highlight-color: transparent;
        }

        body,
        html {
            margin: 0;
            padding: 0;
            width: 100%;
            overflow-x: hidden;
            overflow-x: hidden;
            background-color: var(--fugo-secondary);
            font-family: 'Ubuntu', sans-serif;
        }

        /* Header */
        .main-header {
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 20px 40px;
            gap: 60px;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            background-color: transparent;
            transition: transform 0.4s ease-in-out, padding 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
            box-sizing: border-box;
        }

        .main-header.header-hidden {
            transform: translateY(-100%);
        }

        .main-header.scrolled {
            padding: 20px 40px;
            background-color: transparent;
        }

        .header-logo {
            font-family: 'Berkshire Swash', serif;
            font-size: 28px;
            color: var(--fugo-primary);
            margin: 0;
        }

        .nav-links {
            display: flex;
            gap: 25px;
            align-items: center;
        }

        .nav-links a {
            font-family: 'Ubuntu', sans-serif;
            color: var(--fugo-primary);
            text-decoration: none;
            font-size: 16px;
            font-weight: 500;
            transition: opacity 0.2s;
        }

        .nav-links a:hover {
            opacity: 0.8;
        }

        .mobile-only-link {
            display: none;
        }

        .desktop-only-link {
            display: inline-block;
        }

        .download-btn {
            font-family: 'Ubuntu', sans-serif;
            background-color: var(--fugo-primary);
            color: white;
            text-decoration: none;
            padding: 10px 28px;
            border-radius: 0;
            font-size: 18px;
            font-weight: 500;
            transition: transform 0.2s;
        }

        .download-btn:hover {
            transform: scale(1.05);
        }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: var(--fugo-primary);
            cursor: pointer;
            padding: 5px;
            z-index: 1001;
            position: relative;
            width: 42px;
            height: 42px;
        }

        .mobile-menu-btn svg {
            width: 32px;
            height: 32px;
            stroke-width: 2;
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            transition: opacity 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55), transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        }

        .icon-close {
            opacity: 0;
            transform: translate(-50%, -50%) rotate(-180deg) scale(0.5) !important;
        }

        .mobile-menu-btn.active .icon-menu {
            opacity: 0;
            transform: translate(-50%, -50%) rotate(180deg) scale(0.5) !important;
        }

        .mobile-menu-btn.active .icon-close {
            opacity: 1;
            transform: translate(-50%, -50%) rotate(0) scale(1) !important;
        }



        /* Hero Section */
        .hero-section {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 40px 10%;
            flex-grow: 1;
            position: relative;
            z-index: 10;
        }

        .hero-content {
            max-width: 50%;
        }

        .hero-subtitle {
            font-family: 'Berkshire Swash', serif;
            color: var(--fugo-primary);
            font-size: 26px;
            font-weight: 400;
            margin: 0 0 10px 0;
        }

        .hero-title {
            font-family: 'Ubuntu', sans-serif;
            color: var(--fugo-primary);
            font-size: 64px;
            font-weight: 400;
            line-height: 1.1;
            margin: 0 0 20px 0;
        }

        .hero-text {
            font-family: 'Ubuntu', sans-serif;
            color: var(--fugo-primary);
            font-size: 16px;
            line-height: 1.4;
            margin: 0;
            font-weight: 500;
        }

        .hero-image-container {
            width: 50%;
            display: flex;
            justify-content: flex-end;
            align-items: center;
            margin-right: -80px;
            /* Pulls the apple significantly more to the right */
        }

        .floating-apple {
            width: 100%;
            max-width: 650px;
            /* Slightly larger */
            object-fit: contain;
            border-radius: 24px;
            margin-top: 80px;
            /* Moves the apple down */
            animation: floatUpDown 4s ease-in-out infinite;
            filter: drop-shadow(0 0 90px rgba(255, 248, 160, 0.65));
        }

        /* Leaves Overlay */
        .leaves-overlay {
            position: fixed;
            /* Prevents it from adding height/scrollbars to the document */
            top: -15px;
            left: -15px;
            width: calc(100% + 30px);
            height: calc(100vh + 30px);
            pointer-events: none;
            z-index: 5;
            background-image: url('floating_leafs.webp');
            background-size: 100% 100%;
            /* Force fit exactly to device screen */
            background-position: center;
            background-repeat: no-repeat;
            animation: slowFloat 7s ease-in-out infinite;
        }

        @keyframes floatUpDown {

            0%,
            100% {
                transform: translateY(0);
            }

            50% {
                transform: translateY(-15px);
            }
        }

        @keyframes slowFloat {

            0%,
            100% {
                transform: translateY(0px) translateX(0px);
            }

            50% {
                transform: translateY(-12px) translateX(8px);
            }
        }

        /* â”€â”€ About Section â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
        .about-section {
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 40px 10%;
            position: relative;
            z-index: 10;
        }

        .about-body {
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 100%;
            margin-top: 20px;
        }

        .about-content {
            max-width: 45%;
        }

        .about-text {
            font-family: 'Ubuntu', sans-serif;
            color: var(--fugo-primary);
            font-size: 22px;
            line-height: 1.1;
            margin: 0;
            font-weight: 500;
            letter-spacing: 0.5px;
        }

        .about-image-container {
            width: 50%;
            display: flex;
            justify-content: flex-end;
            align-items: center;
        }

        .floating-veggies {
            width: 100%;
            max-width: 600px;
            object-fit: contain;
            animation: floatUpDown 4s ease-in-out infinite;
            filter: drop-shadow(0 40px 30px rgba(0, 0, 0, 0.15));
        }

        /* â”€â”€ Services Section â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
        .services-section {
            padding: 40px 5%;
            position: relative;
            z-index: 10;
            display: flex;
            flex-direction: column;
            align-items: center;
            max-width: 1400px;
            margin: 0 auto;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 30px;
            width: 100%;
            margin-top: 20px;
            margin-bottom: 50px;
        }

        @media (max-width: 1200px) {
            .services-grid {
                grid-template-columns: repeat(4, 1fr);
            }
        }

        @media (max-width: 900px) {
            .services-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        @media (max-width: 600px) {
            .services-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 400px) {
            .services-grid {
                grid-template-columns: 1fr;
            }
        }

        .service-card {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            padding: 20px;
        }

        .service-icon {
            width: 80px;
            height: 80px;
            object-fit: contain;
            margin-bottom: 20px;
        }

        .service-text {
            font-family: 'Ubuntu', sans-serif;
            color: var(--fugo-primary);
            font-size: 18px;
            line-height: 1.3;
            margin: 0;
            font-weight: 500;
        }

        /* â”€â”€ Testimonials Section â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
        .testi-header {
            font-family: 'Berkshire Swash', serif;
            color: var(--fugo-primary);
            font-size: 64px;
            font-weight: 400;
            margin: 0 0 5px 0;
            text-align: center;
        }

        .testi-subheader {
            font-family: 'Ubuntu', sans-serif;
            color: var(--fugo-primary);
            font-size: 18px;
            font-weight: 500;
            margin: 0 0 40px 0;
            text-align: center;
            letter-spacing: 0.5px;
        }

        .testi-section {
            padding: 40px 5%;
            position: relative;
            z-index: 10;
            display: flex;
            flex-direction: column;
            align-items: center;
            max-width: 1400px;
            margin: 0 auto;
        }

        .testi-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
            width: 100%;
            margin-bottom: 50px;
        }

        @media (max-width: 900px) {
            .testi-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 580px) {
            .testi-grid {
                grid-template-columns: 1fr;
            }
        }

        .testi-card {
            display: flex;
            flex-direction: column;
            transition: transform 0.25s;
            background-color: transparent;
            box-shadow: none;
            border-radius: 0;
        }

        .testi-card:hover {
            transform: translateY(-6px);
        }

        .testi-img-wrapper {
            display: flex;
            width: 100%;
            height: 320px;
            margin-bottom: 16px;
            position: relative;
        }

        .testi-img-half {
            width: 50%;
            height: 100%;
            object-fit: cover;
        }

        .testi-separator {
            position: absolute;
            top: 0;
            left: 50%;
            width: 3px;
            height: 100%;
            background-color: white;
            transform: translateX(-50%);
            z-index: 2;
        }

        .testi-content {
            display: flex;
            flex-direction: column;
            gap: 8px;
            text-align: left;
        }

        .testi-title {
            font-family: 'Ubuntu', sans-serif;
            color: var(--fugo-primary);
            font-size: 22px;
            font-weight: 700;
            margin: 0;
            line-height: 1.3;
        }

        .testi-text {
            font-family: 'Ubuntu', sans-serif;
            color: var(--fugo-primary);
            font-size: 15px;
            line-height: 1.4;
            margin: 0;
            font-weight: 500;
        }

        .testi-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 8px;
        }

        .testi-stars {
            text-align: left;
            font-size: 18px;
            color: #FFD700;
            letter-spacing: 2px;
            margin: 0;
        }



        .view-more-btn {
            font-family: 'Ubuntu', sans-serif;
            background-color: var(--fugo-primary);
            color: white;
            text-decoration: none;
            padding: 10px 28px;
            border-radius: 0;
            font-size: 18px;
            font-weight: 500;
            transition: transform 0.2s;
        }

        .view-more-btn:hover {
            transform: scale(1.05);
        }

        /* â”€â”€ Blog Section â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
        .blog-section {
            padding: 40px 5%;
            position: relative;
            z-index: 10;
            display: flex;
            flex-direction: column;
            align-items: center;
            max-width: 1400px;
            margin: 0 auto 50px auto;
        }

        .blog-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
            max-width: 1200px;
            margin: 0 auto 20px auto;
            width: 100%;
        }

        @media (max-width: 900px) {
            .blog-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 580px) {
            .blog-grid {
                grid-template-columns: 1fr;
            }
        }

        .blog-card {
            display: flex;
            flex-direction: column;
            cursor: pointer;
            transition: transform 0.25s;
        }

        .blog-card:hover {
            transform: translateY(-6px);
        }

        .blog-img {
            width: 100%;
            height: 320px;
            object-fit: cover;
            border-radius: 0;
            margin-bottom: 0px;
        }

        .blog-content {
            padding: 15px 20px;
            display: flex;
            flex-direction: column;
            gap: 10px;
            text-align: left;
        }

        .blog-card .blog-meta {
            font-family: 'Ubuntu', sans-serif !important;
            font-size: 15px !important;
            color: var(--fugo-primary) !important;
            font-weight: 500 !important;
            margin: 0 !important;
        }

        .blog-card .blog-title {
            font-family: 'Ubuntu', sans-serif !important;
            font-size: 22px !important;
            font-weight: 700 !important;
            color: var(--fugo-primary) !important;
            margin: 0 !important;
            line-height: 1.1 !important;
        }

        /* -- Terms & Privacy Pages ----------------------------- */
        .terms-page,
        .privacy-page,
        .reset-page {
            display: none;
            width: 90%;
            max-width: 800px;
            background: transparent;
            padding: 140px 0 80px 0;
            margin: 0 auto;
            position: relative;
            z-index: 10;
            flex-grow: 1;
        }

        .blogapp-page,
        .recipeapp-page,
        .fooddb-page,
        .compareapp-page {
            max-width: 1400px;
            padding: 110px 5% 40px 5%;
        }

        body.terms-active .hero-section,
        body.terms-active .services-section,
        body.terms-active .about-section,
        body.terms-active .testi-section,
        body.terms-active .blog-section,
        body.privacy-active .hero-section,
        body.privacy-active .services-section,
        body.privacy-active .about-section,
        body.privacy-active .testi-section,
        body.privacy-active .blog-section,
        body.aboutapp-active .hero-section,
        body.aboutapp-active .services-section,
        body.aboutapp-active .about-section,
        body.aboutapp-active .testi-section,
        body.aboutapp-active .blog-section,

        body.recipeapp-active .hero-section,
        body.recipeapp-active .services-section,
        body.recipeapp-active .about-section,
        body.recipeapp-active .testi-section,
        body.recipeapp-active .blog-section,
        body.blogapp-active .hero-section,
        body.blogapp-active .services-section,
        body.blogapp-active .about-section,
        body.blogapp-active .testi-section,
        body.blogapp-active .blog-section,
        body.articleapp-active .hero-section,
        body.articleapp-active .services-section,
        body.articleapp-active .about-section,
        body.articleapp-active .testi-section,
        body.articleapp-active .blog-section,
        body.qna-active .hero-section,
        body.qna-active .services-section,
        body.qna-active .about-section,
        body.qna-active .testi-section,
        body.qna-active .blog-section,
        body.qna-active .qna-section,
        body.reset-active .hero-section,
        body.reset-active .services-section,
        body.reset-active .about-section,
        body.reset-active .testi-section,
        body.reset-active .blog-section,
        body.reset-active .qna-section,
        body.calorieapp-active .hero-section,
        body.calorieapp-active .services-section,
        body.calorieapp-active .about-section,
        body.calorieapp-active .testi-section,
        body.calorieapp-active .blog-section,
        body.calorieapp-active .qna-section,
        body.bmiapp-active .hero-section,
        body.bmiapp-active .services-section,
        body.bmiapp-active .about-section,
        body.bmiapp-active .testi-section,
        body.bmiapp-active .blog-section,
        body.bmiapp-active .qna-section,
        body.macroapp-active .hero-section,
        body.macroapp-active .services-section,
        body.macroapp-active .about-section,
        body.macroapp-active .testi-section,
        body.macroapp-active .blog-section,
        body.macroapp-active .qna-section,
        body.compareapp-active .hero-section,
        body.compareapp-active .services-section,
        body.compareapp-active .about-section,
        body.compareapp-active .testi-section,
        body.compareapp-active .blog-section,
        body.compareapp-active .qna-section,
        body.compare-mfp-active .hero-section,
        body.compare-mfp-active .services-section,
        body.compare-mfp-active .about-section,
        body.compare-mfp-active .testi-section,
        body.compare-mfp-active .blog-section,
        body.compare-mfp-active .qna-section,
        body.fooddb-active .hero-section,
        body.fooddb-active .services-section,
        body.fooddb-active .about-section,
        body.fooddb-active .testi-section,
        body.fooddb-active .blog-section,
        body.fooddb-active .qna-section,
        body.terms-active .key-takeaways-section,
        body.privacy-active .key-takeaways-section,
        body.aboutapp-active .key-takeaways-section,
        body.recipeapp-active .key-takeaways-section,
        body.blogapp-active .key-takeaways-section,
        body.articleapp-active .key-takeaways-section,
        body.qna-active .key-takeaways-section,
        body.reset-active .key-takeaways-section,
        body.calorieapp-active .key-takeaways-section,
        body.bmiapp-active .key-takeaways-section,
        body.macroapp-active .key-takeaways-section,
        body.compareapp-active .key-takeaways-section,
        body.compare-mfp-active .key-takeaways-section,
        body.fooddb-active .key-takeaways-section {
            display: none;
        }

        body.terms-active #termsPage {
            display: block;
        }

        body.privacy-active #privacyPage {
            display: block;
        }

        body.aboutapp-active #aboutAppPage {
            display: block;
        }


        body.recipeapp-active #recipeAppPage {
            display: block;
        }

        body.blogapp-active #blogAppPage {
            display: block;
        }

        body.articleapp-active #articleAppPage {
            display: block;
        }

        body.qna-active #qnaPage {
            display: block;
        }

        body.reset-active #resetPage {
            display: block;
        }

        body.calorieapp-active #caloriePage {
            display: block;
        }

        body.bmiapp-active #bmiPage {
            display: block;
        }

        body.macroapp-active #macroPage {
            display: block;
        }

        body.compare-mfp-active #compareMfpPage {
            display: block;
        }

        body.compareapp-active #compareAppPage {
            display: block;
        }

        body.fooddb-active #foodDatabasePage {
            display: block;
        }

        .terms-top-bar {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 100%;
            margin-bottom: 5px;
        }

        .close-terms,
        .privacy-btn {
            position: absolute;
            background: var(--fugo-primary);
            color: white;
            border: none;
            font-size: 18px;
            font-family: 'Ubuntu', sans-serif;
            padding: 10px 24px;
            cursor: pointer;
            transition: transform 0.2s;
        }

        .close-terms {
            left: 0;
        }

        .privacy-btn {
            right: 0;
        }

        .close-terms:hover,
        .privacy-btn:hover {
            transform: scale(1.05);
        }

        .terms-header {
            font-family: 'Berkshire Swash', serif;
            font-size: 64px;
            font-weight: 400;
            margin: 0;
            color: var(--fugo-primary);
            text-align: center;
        }

        .terms-date {
            text-align: center;
            font-family: 'Ubuntu', sans-serif;
            font-size: 16px;
            color: var(--fugo-primary);
            margin: 5px 0 40px 0;
        }

        .terms-content h2 {
            font-family: 'Ubuntu', sans-serif;
            font-size: 24px;
            margin-top: 40px;
            margin-bottom: 15px;
            padding-bottom: 8px;
            color: var(--fugo-primary);
            word-break: break-word;
            overflow-wrap: break-word;
        }

        .terms-content h3 {
            font-family: 'Ubuntu', sans-serif;
            font-size: 20px;
            margin-top: 30px;
            margin-bottom: 15px;
            color: var(--fugo-primary);
            word-break: break-word;
            overflow-wrap: break-word;
        }

        .terms-content h4 {
            font-family: 'Ubuntu', sans-serif;
            font-size: 18px;
            margin-top: 25px;
            margin-bottom: 10px;
            color: var(--fugo-primary);
        }

        .terms-content p,
        .terms-content li,
        .terms-content th,
        .terms-content td {
            font-family: 'Ubuntu', sans-serif;
            font-size: 16px;
            line-height: 1.4;
            margin-bottom: 15px;
            color: var(--fugo-primary);
            font-weight: 500;
        }

        .terms-content ul {
            padding-left: 20px;
            margin-bottom: 20px;
        }

        .terms-content a,
        #articleMeta a {
            color: var(--fugo-primary);
            text-decoration: underline;
        }

        .terms-content a:hover,
        #articleMeta a:hover {
            color: var(--fugo-green-dark);
        }

        @media (max-width: 768px) {
            .terms-section {
                margin: 40px 20px;
                padding: 30px;
            }
        }

        /* â”€â”€ Footer Section â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
        .insta-banner {
            background-color: var(--fugo-primary);
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0;
            width: 100%;
            height: 60px;
            position: relative;
            z-index: 10;
        }



        .insta-link {
            flex: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            color: white;
            text-decoration: none;
            font-family: 'Ubuntu', sans-serif;
            font-size: 20px;
            font-weight: 500;
            height: 100%;
            transition: background-color 0.2s;
        }

        .insta-link:hover {
            background-color: rgba(255, 255, 255, 0.1);
        }

        .insta-icon {
            width: 24px;
            height: 24px;
            object-fit: contain;
        }

        .insta-divider {
            width: 1px;
            height: 40px;
            background-color: var(--fugo-secondary);
        }

        .main-footer {
            background-color: white;
            padding: 60px 10% 20px 10%;
            position: relative;
            z-index: 10;
        }

        .footer-content {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 25px;
        }

        .brand-col {
            max-width: 280px;
        }

        .footer-logo {
            font-family: 'Berkshire Swash', serif;
            color: var(--fugo-primary);
            font-size: 28px;
            margin: 0 0 16px 0;
        }

        .footer-desc {
            font-family: 'Ubuntu', sans-serif;
            color: var(--fugo-primary);
            font-size: 16px;
            line-height: 1.4;
            margin: 0;
            font-weight: 500;
        }

        .links-col {
            display: flex;
            flex-direction: column;
            gap: 16px;
            padding-top: 10px;
        }

        .links-col a {
            font-family: 'Ubuntu', sans-serif;
            color: var(--fugo-primary);
            text-decoration: none;
            font-size: 18px;
            font-weight: 500;
            transition: opacity 0.2s;
        }

        .links-col a:hover {
            opacity: 0.8;
        }

        .news-col {
            display: flex;
            flex-direction: column;
            padding-top: 10px;
        }

        .news-title {
            font-family: 'Ubuntu', sans-serif;
            color: var(--fugo-primary);
            font-size: 18px;
            font-weight: 500;
            margin: 0 0 20px 0;
        }

        .news-form {
            display: flex;
            align-items: center;
            border-bottom: 1px solid var(--fugo-primary);
            padding: 5px 0;
            width: 300px;
        }

        .news-icon {
            width: 24px;
            height: 24px;
            color: var(--fugo-primary);
            margin-right: 12px;
            stroke-width: 1.5;
        }

        .social-col-mobile {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 15px;
            margin-top: 10px;
            margin-bottom: 25px;
        }

        .social-mobile-title {
            font-family: 'Berkshire Swash', serif;
            font-size: 28px;
            font-weight: 400;
            color: var(--fugo-primary);
            margin: 0;
        }

        .social-icons-wrapper {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
        }

        .social-col-mobile a {
            display: flex;
            justify-content: center;
            align-items: center;
            width: 44px;
            height: 44px;
            background-color: var(--fugo-secondary);
            border-radius: 50%;
            text-decoration: none;
            transition: transform 0.2s;
        }

        .social-col-mobile a:hover {
            transform: scale(1.1);
        }

        .social-col-mobile img {
            width: 22px;
            height: 22px;
            object-fit: contain;
        }

        @media (max-width: 400px) {
            .social-icons-wrapper {
                gap: 8px;
            }

            .social-col-mobile a {
                width: 36px;
                height: 36px;
            }

            .social-col-mobile img {
                width: 24px;
                height: 24px;
            }
        }

        .news-input {
            background-color: transparent;
            border: none;
            color: var(--fugo-primary);
            padding: 8px 0;
            font-family: 'Ubuntu', sans-serif;
            font-size: 16px;
            flex-grow: 1;
            outline: none;
        }

        .news-input::placeholder {
            color: rgba(0, 65, 16, 0.6);
            font-weight: 400;
        }

        .news-btn {
            background: none;
            border: none;
            cursor: pointer;
            color: var(--fugo-primary);
            padding: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: transform 0.2s;
        }

        .news-btn:hover {
            transform: translateX(3px);
            opacity: 1;
        }

        .news-btn-icon {
            width: 24px;
            height: 24px;
            stroke-width: 1.5;
        }

        .footer-bottom {
            text-align: center;
            font-family: 'Ubuntu', sans-serif;
            color: var(--fugo-primary);
            font-size: 14px;
            font-weight: 500;
        }

        /* â”€â”€ CTA Section â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
        .cta-section {
            background-color: transparent;
            padding: 60px 20px 100px 20px;
            text-align: center;
            position: relative;
            z-index: 10;
        }

        .floating-strawberry {
            width: 100%;
            max-width: 400px;
            object-fit: contain;
            animation: floatUpDown 4s ease-in-out infinite;
            filter: drop-shadow(0 30px 20px rgba(0, 0, 0, 0.15));
            margin: 0 auto 30px auto;
            display: block;
        }

        .cta-title {
            font-family: 'Berkshire Swash', serif;
            font-size: 64px;
            color: var(--fugo-primary);
            font-weight: 400;
            margin: 0 0 30px 0;
            line-height: 1.2;
        }

        .cta-btn {
            font-family: 'Ubuntu', sans-serif;
            background-color: var(--fugo-primary);
            color: white;
            text-decoration: none;
            padding: 16px 40px;
            border-radius: 0;
            font-size: 24px;
            font-weight: 500;
            display: inline-block;
            transition: transform 0.2s, box-shadow 0.2s;
        }

        .cta-btn:hover {
            transform: scale(1.05);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
        }

        /* â”€â”€ Q&A Section â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
        .qna-section {
            padding: 20px 10% 60px 10%;
            background-color: transparent;
            text-align: center;
            position: relative;
            z-index: 10;
        }

        .qna-header {
            font-family: 'Berkshire Swash', serif;
            color: var(--fugo-primary);
            font-size: 64px;
            font-weight: 400;
            margin-top: 0;
            margin-bottom: 40px;
        }

        .qna-container {
            max-width: 800px;
            margin: 0 auto;
            text-align: left;
        }

        .qna-item {
            background-color: white;
            border: 1px solid rgba(0, 0, 0, 0.05);
            border-radius: 8px;
            margin-bottom: 16px;
            overflow: hidden;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
        }

        .qna-question {
            position: relative;
            padding: 20px;
            padding-right: 50px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            font-family: 'Berkshire Swash', serif;
            font-weight: 400;
            font-size: 20px !important;
            color: var(--fugo-primary) !important;
            word-break: break-word;
            overflow-wrap: break-word;
        }

        .qna-question::after {
            content: '';
            position: absolute;
            right: 20px;
            top: 50%;
            margin-top: -6px;
            width: 12px;
            height: 12px;
            border-right: 2px solid var(--fugo-primary);
            border-bottom: 2px solid var(--fugo-primary);
            transform: rotate(45deg);
            transition: transform 0.3s ease;
        }

        .qna-item.active .qna-question::after,
        details[open] .qna-question::after {
            transform: rotate(-135deg);
        }

        .qna-icon,
        .qna-question svg {
            display: none !important;
            width: 0 !important;
            height: 0 !important;
        }

        .qna-answer {
            padding: 0 20px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease, padding 0.3s ease;
            color: var(--fugo-primary);
            line-height: 1.6;
            font-family: 'Ubuntu', sans-serif;
            font-size: 15px;
        }

        .qna-answer p {
            margin-top: 0;
            margin-bottom: 16px;
            color: var(--fugo-primary) !important;
            font-size: 15px !important;
            line-height: 1.6 !important;
        }

        .qna-item.active .qna-answer {
            padding: 0 20px 20px 20px;
            max-height: 1000px;
        }

        /* Responsive overrides at the very end to prevent cascading issues */
        @media (max-width: 1024px) {
            .main-header {
                justify-content: space-between;
                padding: 15px 20px;
                gap: 10px;
            }

            .main-header.scrolled {
                padding: 15px 20px;
            }

            .mobile-menu-btn {
                display: block;
            }

            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background-color: var(--fugo-secondary);
                padding: 0;
                box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
                border-top: 1px solid rgba(0, 65, 16, 0.1);
                gap: 0;
            }

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

            .nav-links a {
                padding: 15px 20px;
                width: 100%;
                text-align: center;
                border-bottom: 1px solid rgba(0, 65, 16, 0.05);
                box-sizing: border-box;
            }

            .nav-links .mobile-only-link {
                display: block;
            }

            .nav-links .desktop-only-link {
                display: none !important;
            }

            .nav-links a:last-child {
                border-bottom: none;
            }

            .main-header .download-btn {
                display: none;
            }

            .header-logo {
                font-size: 24px;
            }

            /* Responsive Layouts for Hero and About */
            .hero-section {
                flex-direction: column;
                text-align: center;
                padding: 100px 20px 40px 20px;
            }

            .about-section {
                padding: 40px 20px;
            }

            .about-body {
                flex-direction: column;
                text-align: center;
            }

            .hero-content,
            .about-content {
                max-width: 100%;
                margin-bottom: 40px;
            }

            .hero-title,
            .testi-header,
            .terms-header,
            .cta-title,
            .qna-header,
            #articleTitle {
                font-size: 42px !important;
            }

            .about-title {
                font-size: 36px;
            }

            .about-text {
                font-size: 18px;
            }

            .hero-image-container,
            .about-image-container {
                width: 100%;
                justify-content: center;
                margin-right: 0;
            }

            .floating-apple,
            .floating-veggies {
                max-width: 80%;
                margin-top: 20px;
            }

            /* Mobile optimized floating leaves */
            .leaves-overlay {
                background-image: url('floating_leafs_mobile.webp');
            }

            .qna-section {
                padding: 10px 20px 40px 20px;
            }
        }

        @media (max-width: 1300px) {
            .insta-banner {
                display: none !important;
            }

            .social-col-mobile {
                align-items: center;
                grid-column: 1 / -1;
                margin-top: 10px;
                margin-bottom: 20px;
            }

            .social-icons-wrapper {
                justify-content: center;
            }

            /* Footer layout for < 1300px to prevent squishing */
            .main-footer {
                padding: 40px 5% 20px 5%;
            }

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

            .brand-col {
                display: flex;
                flex-direction: column;
                align-items: center;
                text-align: center;
                grid-column: 1 / -1;
                max-width: 100%;
                justify-self: center;
            }

            .links-col {
                width: 100%;
                align-items: center;
                text-align: center;
            }

            .news-col {
                grid-column: 1 / -1;
                align-items: center;
                text-align: center;
            }

            .news-form {
                width: 100%;
                max-width: 320px;
                margin: 0 auto;
            }
        }
        }
        
        @media (prefers-reduced-motion: reduce) {

            .leaves-overlay,
            .floating-apple,
            .floating-veggies,
            .floating-strawberry {
                animation: none !important;
            }
        }

        body.terms-active .use-cases-section,
        body.privacy-active .use-cases-section,
        body.aboutapp-active .use-cases-section,
        body.recipeapp-active .use-cases-section,
        body.blogapp-active .use-cases-section,
        body.articleapp-active .use-cases-section,
        body.qna-active .use-cases-section,
        body.reset-active .use-cases-section,
        body.calorieapp-active .use-cases-section,
        body.bmiapp-active .use-cases-section,
        body.macroapp-active .use-cases-section,
        body.compareapp-active .use-cases-section,
        body.compare-mfp-active .use-cases-section,
        body.fooddb-active .use-cases-section {
            display: none !important;
        }

        /* Demo Scanner Routing */
        body.demoscanner-active #demoScanner,
        body.demorecipescanner-active #demoRecipeScanner,
        body.demobodyscanner-active #demoBodyScanner,
        body.demobarcodescanner-active #demoBarcodeScanner,
        body.demobillscanner-active #demoBillScanner {
            display: block;
        }

        body.demoscanner-active .hero-section,
        body.demoscanner-active .services-section,
        body.demoscanner-active .about-section,
        body.demoscanner-active .testi-section,
        body.demoscanner-active .blog-section,
        body.demoscanner-active .key-takeaways-section,
        body.demoscanner-active .use-cases-section,
        body.demoscanner-active .qna-section,
        body.demorecipescanner-active .hero-section,
        body.demorecipescanner-active .services-section,
        body.demorecipescanner-active .about-section,
        body.demorecipescanner-active .testi-section,
        body.demorecipescanner-active .blog-section,
        body.demorecipescanner-active .key-takeaways-section,
        body.demorecipescanner-active .use-cases-section,
        body.demorecipescanner-active .qna-section,
        body.demobodyscanner-active .hero-section,
        body.demobodyscanner-active .services-section,
        body.demobodyscanner-active .about-section,
        body.demobodyscanner-active .testi-section,
        body.demobodyscanner-active .blog-section,
        body.demobodyscanner-active .key-takeaways-section,
        body.demobodyscanner-active .use-cases-section,
        body.demobodyscanner-active .qna-section,
        body.demobarcodescanner-active .hero-section,
        body.demobarcodescanner-active .services-section,
        body.demobarcodescanner-active .about-section,
        body.demobarcodescanner-active .testi-section,
        body.demobarcodescanner-active .blog-section,
        body.demobarcodescanner-active .key-takeaways-section,
        body.demobarcodescanner-active .use-cases-section,
        body.demobarcodescanner-active .qna-section,
        body.demobillscanner-active .hero-section,
        body.demobillscanner-active .services-section,
        body.demobillscanner-active .about-section,
        body.demobillscanner-active .testi-section,
        body.demobillscanner-active .blog-section,
        body.demobillscanner-active .key-takeaways-section,
        body.demobillscanner-active .use-cases-section,
        body.demobillscanner-active .qna-section {
            display: none !important;
        }

        /* Demo Email Modal Styles */
        .demo-modal {
            position: fixed;
            z-index: 9999;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0,0,0,0.5);
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .demo-modal-content {
            background-color: #fff;
            padding: 30px;
            border-radius: 12px;
            width: 90%;
            max-width: 400px;
            position: relative;
            text-align: center;
            box-shadow: 0 4px 20px rgba(0,0,0,0.15);
        }
        .demo-modal-close {
            position: absolute;
            top: 10px;
            right: 15px;
            font-size: 24px;
            font-weight: bold;
            color: #aaa;
            cursor: pointer;
        }
        .demo-modal-close:hover {
            color: #333;
        }

