        :root {
            --navy: #000075;
            --burgundy: #960018;
            --dark: #121212;
            --ivory: #FEFEFA;
            --gold: #C4A267;
        }
        
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        
        body {
            font-family: 'Cormorant Garamond', serif;
            background-color: var(--ivory);
            background-image: linear-gradient(rgba(254, 254, 250, 0.92), rgba(254, 254, 250, 0.94)), 
                              url('https://images.unsplash.com/photo-1510812431401-41e2f9c2c0b4?q=80&w=2000');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            color: var(--dark);
            line-height: 1.6;
        }
        
        .container {
            max-width: 1000px;
            margin: 0 auto;
            width: 100%;
        }
        
        .faq-header {
            width: 100%;
            text-align: center;
            margin-bottom: 3rem;
            padding-bottom: 1rem;
            border-bottom: 1px solid rgba(150, 0, 24, 0.1);
        }
        
        .faq-header h1 {
            color: var(--navy);
            font-weight: 600;
            letter-spacing: 0.5px;
            font-size: 2.8rem;
            margin-bottom: 0.5rem;
            font-variant: small-caps;
        }
        
        .faq-header p {
            color: var(--burgundy);
            font-style: italic;
            font-size: 1.2rem;
            letter-spacing: 0.3px;
            max-width: 700px;
            margin: 0 auto;
        }
        
        .faq-container {
            background-color: var(--ivory);
            padding: 3rem;
            border-radius: 12px;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
            border-top: 4px solid var(--burgundy);
            position: relative;
            overflow: hidden;
            backdrop-filter: blur(4px);
            border: 1px solid rgba(150, 0, 24, 0.1);
            margin-bottom: 3rem;
        }
        
        .faq-container::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, var(--navy), var(--burgundy));
            z-index: 2;
        }
        
        .faq-container::after {
            content: '🍷';
            position: absolute;
            bottom: -30px;
            right: -30px;
            font-size: 180px;
            opacity: 0.03;
            z-index: 0;
            transform: rotate(15deg);
        }
        
        .faq-category {
            margin-bottom: 3rem;
        }
        
        .faq-category h2 {
            color: var(--navy);
            font-size: 1.8rem;
            margin-bottom: 1.5rem;
            padding-bottom: 0.5rem;
            border-bottom: 1px solid rgba(0, 0, 117, 0.1);
            font-weight: 600;
            letter-spacing: 0.3px;
            position: relative;
        }
        
        .faq-category h2::after {
            content: '';
            position: absolute;
            bottom: -1px;
            left: 0;
            width: 100px;
            height: 2px;
            background: var(--burgundy);
        }
        
        .faq-item {
            margin-bottom: 1.5rem;
            border-bottom: 1px solid rgba(150, 0, 24, 0.1);
            padding-bottom: 1.5rem;
        }
        
        .faq-item:last-child {
            border-bottom: none;
            margin-bottom: 0;
            padding-bottom: 0;
        }
        
        .faq-question {
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            padding: 1rem 0;
            transition: all 0.3s ease;
        }
        
        .faq-question:hover {
            color: var(--burgundy);
        }
        
        .faq-question h3 {
            font-size: 1.2rem;
            font-weight: 500;
            margin-right: 1rem;
        }
        
        .faq-question .icon {
            width: 24px;
            height: 24px;
            position: relative;
            flex-shrink: 0;
        }
        
        .faq-question .icon::before,
        .faq-question .icon::after {
            content: '';
            position: absolute;
            background-color: var(--burgundy);
            transition: all 0.3s ease;
        }
        
        .faq-question .icon::before {
            width: 100%;
            height: 2px;
            top: 50%;
            transform: translateY(-50%);
        }
        
        .faq-question .icon::after {
            width: 2px;
            height: 100%;
            left: 50%;
            transform: translateX(-50%);
        }
        
        .faq-question.active .icon::after {
            transform: translateX(-50%) rotate(90deg);
            opacity: 0;
        }
        
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
            padding-left: 1.5rem;
            border-left: 2px solid rgba(150, 0, 24, 0.1);
        }
        
        .faq-answer p {
            line-height: 1.8;
            padding: 1rem 0;
            font-size: 1.05rem;
        }
        
        .faq-answer.active {
            max-height: 500px;
        }
        
        .contact-prompt {
            text-align: center;
            margin-top: 3rem;
            padding-top: 2rem;
            border-top: 1px solid rgba(150, 0, 24, 0.1);
        }
        
        .contact-prompt h3 {
            color: var(--navy);
            font-size: 1.5rem;
            margin-bottom: 1rem;
        }
        
        .contact-prompt p {
            color: var(--dark);
            max-width: 600px;
            margin: 0 auto 1.5rem;
            font-size: 1.05rem;
            line-height: 1.6;
        }
        
        .btn {
            display: inline-block;
            padding: 12px 24px;
            background-color: var(--burgundy);
            color: white;
            border: none;
            border-radius: 8px;
            font-size: 1.05rem;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
            letter-spacing: 0.5px;
            font-weight: 500;
            font-family: 'Cormorant Garamond', serif;
            text-decoration: none;
            position: relative;
            overflow: hidden;
            z-index: 1;
        }
        
        .btn::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
            z-index: -1;
        }
        
        .btn:hover {
            background-color: #7a0014;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(150, 0, 24, 0.2);
        }
        
        .btn:active {
            transform: translateY(0);
        }
        
        /* Mobile-specific enhancements */
        @media (max-width: 768px) {
            body {
                background-image: linear-gradient(rgba(254, 254, 250, 0.96), rgba(254, 254, 250, 0.98)), 
                                  url('https://images.unsplash.com/photo-1510812431401-41e2f9c2c0b4?q=80&w=1200');
            }
            
            .faq-header h1 {
                font-size: 2.2rem;
            }
            
            .faq-header p {
                font-size: 1rem;
            }
            
            .faq-container {
                padding: 2rem 1.5rem;
            }
            
            .faq-category h2 {
                font-size: 1.5rem;
            }
            
            .faq-container::after {
                font-size: 140px;
                bottom: -20px;
                right: -20px;
            }
            
            .faq-question h3 {
                font-size: 1.1rem;
            }
        }
        
        /* Animation for subtle interactivity */
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        .faq-header {
            animation: fadeIn 0.6s ease-out forwards;
        }
        
        .faq-container {
            opacity: 0;
            animation: fadeIn 0.6s ease-out 0.2s forwards;
        }
        
        .faq-category {
            opacity: 0;
            animation: fadeIn 0.6s ease-out forwards;
        }
        
        .faq-category:nth-child(1) { animation-delay: 0.3s; }
        .faq-category:nth-child(2) { animation-delay: 0.4s; }
        .faq-category:nth-child(3) { animation-delay: 0.5s; }
