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

        body {
            font-family: 'Nunito', sans-serif;
            line-height: 1.6;
            color: #5B0E6C;
        }

        /* Header */
        header {
            background: white;
            padding: 1rem 2rem;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

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

        .logo {
            font-size: 1.2rem;
            font-weight: 700;
            color: #5B0E6C;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        nav a {
            text-decoration: none;
            color: #5B0E6C;
            font-weight: 600;
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            transition: color 0.3s;
        }

        nav a:hover {
            color: #5B0E6C;
        }

        /* Hero Section */
        .hero {
            border-radius: 32px;
            background: #FFD5DA;
            padding: 3rem 2rem;
            position: relative;
            overflow: hidden;
        }

        .hero-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
            align-items: center;
        }

        .hero-content h1 {
            font-size: 2.5rem;
            font-weight: 800;
            color: #4a2c5e;
            margin-bottom: 1rem;
            line-height: 1.2;
        }

        .hero-content p {
            color: #5a3d6e;
            font-size: 1rem;
            margin-bottom: 2rem;
            line-height: 1.8;
        }

        .recipe-card {
            border-radius: 32px;
            background: #FFD5DA;
            padding: 24px;
        }

        .cta-button {
            background: #8b5a9f;
            color: white;
            padding: 1rem 2rem;
            border: none;
            border-radius: 30px;
            font-size: 1rem;
            font-weight: 700;
            text-transform: uppercase;
            cursor: pointer;
            transition: all 0.3s;
            display: inline-block;
            text-decoration: none;
        }

        .cta-button:hover {
            background: #6d4580;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }

        .hero-image {
            position: relative;
            text-align: right;
        }

        .hero-image img {
            max-width: 100%;
            height: auto;
        }

        /* Intro Section */
        .intro {
            background: white;
            padding: 3rem 2rem;
        }

        .intro-container {
            max-width: 1200px;
            margin: 0 auto;
            text-align: center;
        }

        .intro h2 {
            font-size: 2rem;
            font-weight: 800;
            color: #5B0E6C;
            margin-bottom: 1rem;
        }

        .intro p {
            color: #5B0E6C;
            font-size: 1rem;
            line-height: 1.8;
            max-width: 900px;
            margin: 0 auto;

        }

        /* Fruits Grid */
        .fruits-grid {
            background: #f8f8f8;
            padding: 3rem 2rem;
        }

        .fruits-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .fruit-card {


            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s;
            border-radius: 32px;
            background: #FFD5DA;
            padding: 24px;
        }

        .fruit-card:hover {
            transform: translateY(-5px);
        }

        .fruit-image {
            width: 100%;
            height: 250px;
            object-fit: cover;
            background: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 2rem;
        }

        .fruit-image img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
        }

        .fruit-content {
            padding: 1.5rem;
        }

        .fruit-content h3 {
            font-size: 1.5rem;
            font-weight: 800;
            color: #5B0E6C;
            margin-bottom: 0.5rem;
        }

        .fruit-content .subtitle {
            color: #5B0E6C;
            font-size: 0.9rem;
            font-weight: 600;
            margin-bottom: 1rem;
        }

        .fruit-content p {
            color: #5B0E6C;
            font-size: 0.95rem;
            line-height: 1.7;
        }

        /* Responsive */
        @media (max-width: 768px) {
            nav ul {
                gap: 1rem;
            }

            nav a {
                font-size: 0.8rem;
            }

            .hero-container {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .hero-content h1 {
                font-size: 2rem;
            }

            .hero-image {
                text-align: center;
            }

            .fruits-container {
                grid-template-columns: 1fr;
            }
        }

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

            nav ul {
                flex-wrap: wrap;
                justify-content: center;
            }

            .hero-content h1 {
                font-size: 1.5rem;
            }

            .intro h2 {
                font-size: 1.5rem;
            }
        }

        /* Smooth scroll */
        html {
            scroll-behavior: smooth;
        }

        img {
            border-radius: 32px !important;
        }


        .recipes-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 2rem;
            margin-top: 2rem;
        }

        /*.recipe-card {*/
        /*  background: #fff;*/
        /*  border-radius: 10px;*/
        /*  overflow: hidden;*/
        /*  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);*/
        /*}*/

        .recipe-card img {
            width: 100%;
            height: 250px;
            object-fit: cover;
            display: block;
        }

        .recipe-content {
            padding: 1.5rem;
        }

        .recipe-content h3 {
            font-size: 1.3rem;
            font-weight: 800;
            color: #8b5a9f;
            margin-bottom: 0.5rem;
        }

        .recipe-content p {
            color: #5b0e6c;
            font-size: 0.95rem;
            line-height: 1.7;
        }

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