  * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary: #ef4444;
            --primary-dark: #dc2626;
            --bg-dark: #0f172a;
            --bg-darker: #020617;
            --text-light: #e2e8f0;
            --text-muted: #94a3b8;
            --border-color: #1e293b;
            --accent-bg: #1e293b;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: var(--bg-dark);
            color: var(--text-light);
            overflow-x: hidden;
        }

        /* ===== HEADER ===== */
        header {
            background: rgba(15, 23, 42, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid var(--border-color);
            position: sticky;
            top: 0;
            z-index: 100;
            animation: slideDown 0.6s ease-out;
        }

        .header-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 1rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            width: 100%;
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--primary);
            text-decoration: none;
            letter-spacing: 1px;
        }

        .logo img {
            width: 65px;
        }

        nav {
            display: flex;
            gap: 2rem;
            align-items: center;
        }

        nav a {
            color: var(--text-muted);
            text-decoration: none;
            font-size: 0.95rem;
            transition: color 0.3s ease;
        }

        nav a:hover {
            color: var(--primary);
        }

        .cta-button {
            background: var(--primary);
            color: white;
            padding: 0.75rem 1.5rem;
            border-radius: 6px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
        }

        .cta-button:hover {
            background: var(--primary-dark);
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(239, 68, 68, 0.3);
        }

        .menu-toggle {
            display: none;
            background: none;
            border: none;
            color: var(--text-light);
            font-size: 1.5rem;
            cursor: pointer;
        }

        /* ===== HERO SECTION ===== */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
            background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-darker) 100%);
        }

        .hero::before {
            content: '';
            position: absolute;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(239, 68, 68, 0.1) 0%, transparent 70%);
            border-radius: 50%;
            top: -100px;
            right: -100px;
            animation: float 6s ease-in-out infinite;
        }

        .hero-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 2rem;
            width: 100%;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            position: relative;
            z-index: 1;
        }

        .hero-left {
            animation: slideInLeft 0.8s ease-out;
        }

        .hero-left h1 {
            font-size: 3.5rem;
            line-height: 1.2;
            margin-bottom: 1.5rem;
            font-weight: 800;
        }

        .hero-left h1 span {
            color: var(--primary);
        }

        .hero-left p {
            font-size: 1.1rem;
            color: var(--text-muted);
            line-height: 1.8;
            margin-bottom: 2rem;
        }

        .hero-buttons {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }

        .hero-buttons .cta-button {
            padding: 1rem 2rem;
            font-size: 1rem;
        }

        .secondary-button {
            background: transparent;
            border: 2px solid var(--primary);
            color: var(--primary);
        }

        .secondary-button:hover {
            background: rgba(239, 68, 68, 0.1);
        }

        .hero-right {
            position: relative;
            animation: slideInRight 0.8s ease-out;
        }

        .hero-image {
            width: 100%;
            height: 500px;
            background: linear-gradient(135deg, var(--accent-bg), var(--border-color));
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 4rem;
            box-shadow: 0 20px 60px rgba(239, 68, 68, 0.2);
            animation: bounce 3s ease-in-out infinite;
        }
        .hero-image img
        {
            width: 100%;
        }

        /* ===== ABOUT SECTION ===== */
        .about {
            padding: 5rem 2rem;
            max-width: 1200px;
            margin: 0 auto;
            background: var(--bg-dark);
        }

        .section-title {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            font-weight: 700;
        }

        .section-title span {
            color: var(--primary);
        }

        .section-subtitle {
            color: var(--text-muted);
            margin-bottom: 3rem;
            max-width: 600px;
        }

        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .about-features {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }

        .feature-item {
            padding: 1.5rem;
            background: var(--accent-bg);
            border-left: 4px solid var(--primary);
            border-radius: 8px;
            transition: all 0.3s ease;
            animation: fadeInUp 0.8s ease-out backwards;
        }

        .feature-item:nth-child(2) {
            animation-delay: 0.1s;
        }

        .feature-item:nth-child(3) {
            animation-delay: 0.2s;
        }

        .feature-item h3 {
            color: var(--primary);
            margin-bottom: 0.5rem;
            font-size: 1.1rem;
        }

        .feature-item p {
            color: var(--text-muted);
            line-height: 1.6;
        }

        .feature-item:hover {
            background: rgba(239, 68, 68, 0.05);
            transform: translateX(10px);
        }

        .about-image {
            width: 100%;
            height: 400px;
            background: linear-gradient(135deg, var(--accent-bg), var(--border-color));
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 5rem;
        }

        .about-image img
        {
            width: 100%;
        }

        /* ===== EXPERT SECTION ===== */
        .expert {
            padding: 5rem 2rem;
            max-width: 1200px;
            margin: 0 auto;
            background: var(--bg-dark);
        }

        .expert-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
        }

        .expert-card {
            background: var(--accent-bg);
            border-radius: 12px;
            overflow: hidden;
            transition: all 0.3s ease;
            animation: scaleIn 0.6s ease-out backwards;
        }

        .expert-card:nth-child(2) {
            animation-delay: 0.1s;
        }

        .expert-card:nth-child(3) {
            animation-delay: 0.2s;
        }

        .expert-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(239, 68, 68, 0.2);
        }

        .expert-image {
            width: 100%;
            height: 200px;
            background: linear-gradient(135deg, var(--primary), rgba(239, 68, 68, 0.5));
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 3rem;
        }

        .expert-content {
            padding: 1.5rem;
        }

        .expert-content h3 {
            color: var(--text-light);
            margin-bottom: 0.5rem;
        }

        .expert-role {
            color: var(--primary);
            font-size: 0.9rem;
            margin-bottom: 1rem;
        }

        .expert-content p {
            color: var(--text-muted);
            font-size: 0.95rem;
            line-height: 1.6;
        }

        /* ===== INGREDIENTS SECTION ===== */
        .ingredients {
            padding: 5rem 2rem;
            max-width: 1200px;
            margin: 0 auto;
            background: var(--bg-dark);
        }

        .ingredient-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
        }

        .ingredient-item {
            text-align: center;
            padding: 2rem;
            background: var(--accent-bg);
            border-radius: 12px;
            transition: all 0.3s ease;
            animation: flipInX 0.6s ease-out backwards;
        }

        .ingredient-item:nth-child(2) {
            animation-delay: 0.1s;
        }

        .ingredient-item:nth-child(3) {
            animation-delay: 0.2s;
        }

        .ingredient-item:nth-child(4) {
            animation-delay: 0.3s;
        }

        .ingredient-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
            display: inline-block;
        }

        .ingredient-item h3 {
            margin-bottom: 0.5rem;
            color: var(--text-light);
        }

        .ingredient-item p {
            color: var(--text-muted);
            font-size: 0.9rem;
            line-height: 1.6;
        }

        .ingredient-item:hover {
            background: rgba(239, 68, 68, 0.08);
            transform: scale(1.05);
        }

        /* ===== TESTIMONIALS SECTION ===== */
        .testimonials {
            padding: 5rem 2rem;
            max-width: 1200px;
            margin: 0 auto;
            background: var(--bg-dark);
        }

        .testimonial-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .testimonial-card {
            background: var(--accent-bg);
            padding: 2rem;
            border-radius: 12px;
            border: 1px solid var(--border-color);
            transition: all 0.3s ease;
            animation: slideUp 0.6s ease-out backwards;
        }

        .testimonial-card:nth-child(2) {
            animation-delay: 0.1s;
        }

        .testimonial-card:nth-child(3) {
            animation-delay: 0.2s;
        }

        .testimonial-card:hover {
            border-color: var(--primary);
            box-shadow: 0 10px 30px rgba(239, 68, 68, 0.15);
        }

        .stars {
            color: var(--primary);
            font-size: 1rem;
            margin-bottom: 1rem;
        }

        .testimonial-text {
            color: var(--text-muted);
            margin-bottom: 1.5rem;
            line-height: 1.8;
            font-style: italic;
        }

        .testimonial-author {
            color: var(--text-light);
            font-weight: 600;
            margin-bottom: 0.25rem;
        }

        .testimonial-role {
            color: var(--text-muted);
            font-size: 0.9rem;
        }

        /* ===== FAQ SECTION ===== */
        .faq {
            padding: 5rem 2rem;
            max-width: 800px;
            margin: 0 auto;
            background: var(--bg-dark);
        }

        .faq-item {
            background: var(--accent-bg);
            border-radius: 8px;
            margin-bottom: 1rem;
            border: 1px solid var(--border-color);
            overflow: hidden;
            animation: fadeIn 0.6s ease-out backwards;
        }

        .faq-item:nth-child(2) {
            animation-delay: 0.1s;
        }

        .faq-item:nth-child(3) {
            animation-delay: 0.2s;
        }

        .faq-item:nth-child(4) {
            animation-delay: 0.3s;
        }

        .faq-question {
            padding: 1.5rem;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: background 0.3s ease;
        }

        .faq-question:hover {
            background: rgba(239, 68, 68, 0.05);
        }

        .faq-question h3 {
            margin: 0;
            font-size: 1rem;
            color: var(--text-light);
        }

        .faq-toggle {
            color: var(--primary);
            font-size: 1.5rem;
            transition: transform 0.3s ease;
        }

        .faq-item.active .faq-toggle {
            transform: rotate(45deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }

        .faq-item.active .faq-answer {
            max-height: 500px;
        }

        .faq-answer p {
            padding: 0 1.5rem 1.5rem;
            color: var(--text-muted);
            line-height: 1.8;
        }

        /* ===== FOOTER ===== */
        footer {
            background: var(--bg-darker);
            border-top: 1px solid var(--border-color);
            padding: 3rem 2rem 1rem;
            margin-top: 5rem;
            animation: slideUp 0.8s ease-out;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }

        .footer-section h4 {
            color: var(--text-light);
            margin-bottom: 1rem;
            font-size: 1rem;
        }

        .footer-section ul {
            list-style: none;
        }

        .footer-section ul li {
            margin-bottom: 0.7rem;
        }

        .footer-section ul li a {
            color: var(--text-muted);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-section ul li a:hover {
            color: var(--primary);
        }

        .footer-bottom {
            border-top: 1px solid var(--border-color);
            padding-top: 2rem;
            text-align: center;
            color: var(--text-muted);
            font-size: 0.9rem;
        }

        /* ===== ANIMATIONS ===== */
        @keyframes slideDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes slideInRight {
            from {
                opacity: 0;
                transform: translateX(50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes float {
            0%, 100% {
                transform: translateY(0px);
            }
            50% {
                transform: translateY(-30px);
            }
        }

        @keyframes bounce {
            0%, 100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-20px);
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes slideUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes scaleIn {
            from {
                opacity: 0;
                transform: scale(0.9);
            }
            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        @keyframes flipInX {
            from {
                opacity: 0;
                transform: rotateX(90deg);
            }
            to {
                opacity: 1;
                transform: rotateX(0);
            }
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }

        /* ===== RESPONSIVE DESIGN ===== */
        @media (max-width: 768px) {
            nav {
                display: none;
            }

            .menu-toggle {
                display: block;
            }

            .hero-content {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .hero-left h1 {
                font-size: 2rem;
            }

            .hero-image {
                height: 300px;
            }

            .about-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .about-image {
                height: 300px;
            }

            .section-title {
                font-size: 1.8rem;
            }

            .hero-buttons {
                flex-direction: column;
            }

            .hero-buttons .cta-button,
            .hero-buttons .secondary-button {
                width: 100%;
                text-align: center;
            }

            .footer-content {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 480px) {
            .header-content {
                padding: 1rem;
            }

            .logo {
                width: 100%;
                /* font-size: 1.2rem; */
            }

            .hero {
                min-height: auto;
                padding: 2rem 0;
            }

            .hero-left h1 {
                font-size: 1.5rem;
            }

            .hero-left p {
                font-size: 1rem;
            }

            .about, .expert, .ingredients, .testimonials, .faq {
                padding: 3rem 1rem;
            }

            .ingredient-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .expert-grid {
                grid-template-columns: 1fr;
            }

            .testimonial-grid {
                grid-template-columns: 1fr;
            }
        }