.cuisine-detail-container {
            margin-top: 80px;
            padding: 40px 0;
        }
        
        .cuisine-header {
            height: 300px;
            background-size: cover;
            background-position: center;
            border-radius: 15px;
            margin-bottom: 40px;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-align: center;
        }
        
        .cuisine-header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            border-radius: 15px;
        }
        
        .cuisine-header-content {
            position: relative;
            z-index: 2;
            padding: 20px;
            max-width: 800px;
        }
        
        .cuisine-header h1 {
            font-size: 3rem;
            margin-bottom: 15px;
            color: white;
        }
        
        .cuisine-header p {
            font-size: 1.2rem;
            opacity: 0.9;
        }
        
        .cuisine-content {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 40px;
            margin-bottom: 60px;
        }
        
        .cuisine-section {
            background: white;
            border-radius: 10px;
            padding: 30px;
            margin-bottom: 30px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
        }
        
        .cuisine-section h2 {
            color: #c62b29;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #eee;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .cuisine-section h2 i {
            color: #d4af37;
        }
        
        .section-content {
            line-height: 1.8;
            color: #555;
        }
        
        .features-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
            margin-top: 20px;
        }
        
        .feature-card {
            background: #f8f9fa;
            padding: 20px;
            border-radius: 8px;
            border-left: 4px solid #c62b29;
        }
        
        .feature-card h3 {
            color: #333;
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .dishes-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
            margin-top: 20px;
        }
        
        .dish-card {
            background: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
        }
        
        .dish-card img {
            width: 100%;
            height: 180px;
            object-fit: cover;
        }
        
        .dish-info {
            padding: 15px;
        }
        
        .dish-info h4 {
            color: #333;
            margin-bottom: 8px;
        }
        
        .dish-info p {
            color: #666;
            font-size: 0.9rem;
            margin-bottom: 10px;
        }
        
        .cuisine-sidebar {
            position: sticky;
            top: 100px;
            height: fit-content;
        }
        
        .info-card, .quick-nav {
            background: white;
            border-radius: 10px;
            padding: 25px;
            margin-bottom: 25px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
        }
        
        .info-card h3, .quick-nav h3 {
            color: #333;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .info-grid {
            display: grid;
            gap: 15px;
        }
        
        .info-item {
            display: flex;
            justify-content: space-between;
            padding-bottom: 10px;
            border-bottom: 1px solid #eee;
        }
        
        .info-item:last-child {
            border-bottom: none;
        }
        
        .info-label {
            color: #666;
        }
        
        .info-value {
            color: #333;
            font-weight: 600;
        }
        
        .quick-nav ul {
            list-style: none;
        }
        
        .quick-nav li {
            margin-bottom: 10px;
        }
        
        .quick-nav a {
            display: block;
            padding: 12px 15px;
            background: #f8f9fa;
            border-radius: 6px;
            color: #555;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .quick-nav a:hover {
            background: #c62b29;
            color: white;
            padding-left: 20px;
        }
        
        @media (max-width: 992px) {
            .cuisine-content {
                grid-template-columns: 1fr;
            }
            
            .cuisine-sidebar {
                position: static;
            }
        }
        
        @media (max-width: 768px) {
            .features-grid,
            .dishes-grid {
                grid-template-columns: 1fr;
            }
            
            .cuisine-header h1 {
                font-size: 2rem;
            }
            
            .cuisine-header {
                height: 250px;
            }
        }