:root {
            --primary: #1a365d;
            --primary-light: #2d5a87;
            --secondary: #d4af37;
            --accent: #f7fafc;
            --text-primary: #1a202c;
            --text-secondary: #4a5568;
            --text-light: #718096;
            --border: #e2e8f0;
            --shadow: 0 0.625rem 1.5625rem -0.3125rem rgba(0, 0, 0, 0.1), 0 0.625rem 0.625rem -0.3125rem rgba(0, 0, 0, 0.04);
            --shadow-lg: 0 1.5625rem 3.125rem -0.75rem rgba(0, 0, 0, 0.25);
            --gradient-primary: linear-gradient(135deg, #1a365d 0%, #2d5a87 100%);
            --gradient-secondary: linear-gradient(135deg, #d4af37 0%, #f6e05e 100%);
        }
        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            line-height: 1.6;
            color: var(--text-primary);
            background: var(--accent);
            overflow-x: hidden;
            margin-top: 5rem;
        }
body.dark-mode .footer {
            background: #000 !important;
        }
        .footer {
            background: #000 !important;
            color: white;
            padding: 48px 0px 24px;
        }

        .footer-container {
            max-width: 87.5rem;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .footer-content {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 3rem;
            margin-bottom: 2rem;
        }

        .footer-brand h3 {
            font-family: 'Playfair Display', serif;
            font-size: 21.6px;
            font-weight: 700;
            margin-bottom: 1rem;
            color: var(--secondary);
        }

        .footer-brand p {
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.8;
            margin-bottom: 1.5rem;
            font-size: 12px;
        }

        .social-links {
            display: flex;
            gap: 1rem;
        }

        .social-links a {
            width: 2.5rem;
            height: 2.5rem;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .social-links a:hover {
            background: var(--secondary);
            color: var(--primary);
        }

        .footer-section {
            width: 100%;
            
        }

        .footer-section h4 {
            font-size: 14.4px;
            font-weight: 600;
            margin-bottom: 1rem;
            color: var(--secondary);
        }

        .footer-section ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .footer-section ul li {
            margin-bottom: 0.5rem;
        }

        .footer-section ul li a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: color 0.3s ease;
            font-size: 12px;
        }

        .footer-section ul li a:hover {
            color: var(--secondary);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 24px;
            border-top: 0.0625rem solid rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.6);
            font-size: 12px;
        }
 @media (max-width: 64rem) {
      .footer-content {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

        .footer-container {
                padding: 0 0.5rem;
            }
            .footer-content {
                grid-template-columns: 1fr;
                gap: 1.2rem;
                margin-bottom: 1.2rem;
            }
            .footer-brand h3 {
                font-size: 1.1rem;
            }
            .footer-section h4 {
                font-size: 1rem;
            }
            .footer-section ul li {
                font-size: 0.95rem;
            }
            .footer-bottom {
                padding-top: 1rem;
                font-size: 0.9rem;
            }
                .footer-brand, .footer-section {
        width: 100%;
        text-align: center;
        margin-bottom: 0.7rem;
    }
    .social-links {
        justify-content: center;
        gap: 0.7rem;
        margin-bottom: 0.7rem;
    }
        }
