:root {
            --primary-color: #d35400;
            --secondary-color: #f39c12;
            --accent-color: #e67e22;
            --text-dark: #2c3e50;
            --text-light: #7f8c8d;
            --bg-light: #f8f9fa;
            --spice-red: #e74c3c;
            --herb-green: #27ae60;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            color: var(--text-dark);
            background-color: #fff;
        }
        .logo-text {
            font-family: 'Georgia', serif;
            font-weight: bold;
            color: var(--primary-color);
            font-size: 2.2rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
        }
        .nav-link {
            font-weight: 500;
            color: var(--text-dark);
            transition: all 0.3s ease;
        }
        .nav-link:hover {
            color: var(--primary-color);
            transform: translateY(-2px);
        }
        .hero-section {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: white;
            padding: 4rem 0;
            margin-bottom: 2rem;
            border-radius: 0 0 20px 20px;
        }
        .section-title {
            color: var(--primary-color);
            border-left: 5px solid var(--accent-color);
            padding-left: 15px;
            margin: 2rem 0 1.5rem;
        }
        .content-card {
            background: white;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            padding: 2rem;
            margin-bottom: 2rem;
            transition: transform 0.3s ease;
            border-top: 4px solid var(--primary-color);
        }
        .content-card:hover {
            transform: translateY(-5px);
        }
        .highlight-text {
            background: linear-gradient(120deg, var(--secondary-color) 0%, var(--secondary-color) 100%);
            background-repeat: no-repeat;
            background-size: 100% 0.4em;
            background-position: 0 88%;
            font-weight: 600;
        }
        .ingredient-list li {
            margin-bottom: 0.5rem;
            padding-left: 1.5rem;
            position: relative;
        }
        .ingredient-list li:before {
            content: "•";
            color: var(--spice-red);
            font-weight: bold;
            position: absolute;
            left: 0;
        }
        .spice-icon {
            color: var(--spice-red);
            margin-right: 8px;
        }
        .herb-icon {
            color: var(--herb-green);
            margin-right: 8px;
        }
        .recipe-step {
            counter-increment: step-counter;
            margin-bottom: 1.5rem;
            padding-left: 3rem;
            position: relative;
        }
        .recipe-step:before {
            content: counter(step-counter);
            background-color: var(--primary-color);
            color: white;
            font-weight: bold;
            border-radius: 50%;
            width: 30px;
            height: 30px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            position: absolute;
            left: 0;
            top: 0;
        }
        .image-container {
            border-radius: 10px;
            overflow: hidden;
            margin: 1.5rem 0;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        .image-caption {
            background-color: var(--bg-light);
            padding: 0.5rem 1rem;
            font-style: italic;
            color: var(--text-light);
            text-align: center;
        }
        .fact-box {
            background-color: var(--bg-light);
            border-left: 4px solid var(--herb-green);
            padding: 1.5rem;
            margin: 1.5rem 0;
            border-radius: 0 8px 8px 0;
        }
        footer {
            background-color: var(--text-dark);
            color: white;
            padding: 3rem 0 2rem;
            margin-top: 3rem;
        }
        @media (max-width: 768px) {
            .logo-text {
                font-size: 1.8rem;
            }
            .hero-section {
                padding: 2.5rem 0;
            }
            .content-card {
                padding: 1.5rem;
            }
        }
