:root {
            --primary-mustard: #FFDB58;
            --secondary-spice: #D35400;
            --accent-turmeric: #F4D03F;
            --dark-base: #2C3E50;
            --light-cream: #FEF9E7;
        }
        body {
            font-family: 'Segoe UI', system-ui, sans-serif;
            background: linear-gradient(135deg, var(--light-cream) 0%, #ffffff 100%);
            color: var(--dark-base);
            line-height: 1.7;
        }
        .logo-text {
            font-family: 'Georgia', serif;
            font-weight: bold;
            color: var(--secondary-spice);
            text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
            font-size: 1.8rem;
        }
        .nav-custom {
            background: linear-gradient(90deg, var(--primary-mustard) 0%, var(--accent-turmeric) 100%);
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }
        .nav-link {
            color: var(--dark-base) !important;
            font-weight: 600;
            transition: all 0.3s ease;
            border-radius: 8px;
            margin: 0 5px;
        }
        .nav-link:hover {
            background-color: rgba(255,255,255,0.3);
            transform: translateY(-2px);
        }
        h1, h2, h3 {
            color: var(--secondary-spice);
            margin-bottom: 1.5rem;
            border-left: 5px solid var(--primary-mustard);
            padding-left: 15px;
        }
        h1 {
            font-size: 2.5rem;
            border-left: 8px solid var(--secondary-spice);
            margin-top: 2rem;
        }
        .content-section {
            background: white;
            border-radius: 15px;
            padding: 2.5rem;
            margin-bottom: 2rem;
            box-shadow: 0 8px 25px rgba(0,0,0,0.08);
            transition: transform 0.3s ease;
        }
        .content-section:hover {
            transform: translateY(-5px);
        }
        .highlight-box {
            background: linear-gradient(135deg, var(--primary-mustard) 0%, var(--accent-turmeric) 100%);
            border-radius: 12px;
            padding: 1.5rem;
            margin: 2rem 0;
            border-left: 6px solid var(--secondary-spice);
        }
        .keyword-emphasis {
            background-color: var(--primary-mustard);
            padding: 0.2rem 0.5rem;
            border-radius: 4px;
            font-weight: bold;
        }
        .image-container {
            border-radius: 12px;
            overflow: hidden;
            margin: 2rem 0;
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
            transition: transform 0.4s ease;
        }
        .image-container:hover {
            transform: scale(1.02);
        }
        .cultural-icon {
            font-size: 2.5rem;
            color: var(--secondary-spice);
            margin-right: 15px;
        }
        .fact-box {
            background-color: #f8f9fa;
            border-radius: 10px;
            padding: 1.5rem;
            border-left: 4px solid var(--primary-mustard);
            margin: 1.5rem 0;
        }
        footer {
            background: linear-gradient(90deg, var(--dark-base) 0%, #34495E 100%);
            color: white;
            padding: 3rem 0;
            margin-top: 4rem;
        }
        @media (max-width: 768px) {
            .content-section {
                padding: 1.5rem;
            }
            h1 {
                font-size: 2rem;
            }
            .logo-text {
                font-size: 1.5rem;
            }
        }
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background: var(--secondary-spice);
            color: white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            box-shadow: 0 4px 12px rgba(0,0,0,0.2);
            transition: all 0.3s ease;
            z-index: 1000;
        }
        .back-to-top:hover {
            transform: translateY(-5px);
            background: var(--primary-mustard);
            color: var(--dark-base);
        }
