:root {
            --navy: #2a475d;
            --gold: #ddd792;
            --gold-hover: #c8c17b;
            --gray-light: #f5f5f5;
        }

        body {
            padding: 0 !important;
            margin: 0 !important;
            background-color: #ffffff !important;
            color: #2a475d;
            font-family: 'Inter', sans-serif;
        }

        .font-playfair {
            font-family: 'Playfair Display', serif;
        }

        .bg-glass {
            background: rgba(42, 71, 93, 0.98) !important;
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .btn-green {
            background: linear-gradient(135deg, #059669 0%, #10b981 100%) !important;
            color: #ffffff !important;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            font-weight: 600;
            text-transform: none !important;
            letter-spacing: 0.02em;
        }

        .btn-green:hover {
            filter: brightness(1.1);
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(5, 150, 105, 0.3);
        }

        .nav-link {
            font-size: 11px;
            letter-spacing: 0.05em;
            color: rgba(255, 255, 255, 0.9) !important;
            transition: color 0.3s;
            text-decoration: none;
            text-transform: none !important;
        }

        .nav-link:hover {
            color: var(--gold) !important;
        }

        details summary::-webkit-details-marker {
            display: none;
        }

        .section-navy {
            background: linear-gradient(135deg, #2a475d 0%, #3b617d 100%) !important;
            color: #ffffff !important;
        }

        .section-white {
            background-color: #ffffff !important;
            color: #2a475d !important;
        }

        .section-light {
            background-color: #f5f5f5 !important;
            color: #2a475d !important;
        }

        .card-white {
            background-color: #ffffff !important;
            border: 1px solid rgba(0, 0, 0, 0.08) !important;
            color: #2a475d !important;
        }

        .card-navy {
            background-color: rgba(255, 255, 255, 0.05) !important;
            border: 1px solid rgba(255, 255, 255, 0.1) !important;
            color: #ffffff !important;
        }

        .text-gold {
            color: var(--gold) !important;
        }

        .bg-gold {
            background-color: var(--gold) !important;
        }

        .step-number {
            font-family: 'Playfair Display', serif;
            font-size: 3.5rem;
            line-height: 1;
            opacity: 0.1;
            color: var(--navy);
            transition: all 0.3s ease;
        }

        .step-card:hover .step-number {
            opacity: 0.4;
            color: var(--gold);
        }


