<style>
        .inter {
            font-family: "Inter", sans-serif;
            font-optical-sizing: auto;
            font-weight: 400;
            font-style: normal;
        }



        
       
@import url('https://fonts.googleapis.com/css2?family=EB+Garamond:ital,wght@0,400..800;1,400..800&family=Google+Sans:ital,opsz,wght@0,17..18,400..700;1,17..18,400..700&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=PT+Serif+Caption:ital@0;1&family=Roboto+Serif:ital,opsz,wght@0,8..144,100..900;1,8..144,100..900&display=swap');
 
       .serif-display  {
            font-family: "Roboto Serif", serif;
            font-optical-sizing: auto;
            font-weight: 500;
            font-style: normal;
            font-variation-settings:
                "wdth" 100,
                "GRAD" 0;
            }
        .gray {
            color: #737373;
        }
        .gold {
            color: #AF9061;
        }
        
        * {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
        }
        
        body {
            background: #ffffff;
            color: #000000;
        }
        
        .card-gradient {
            background: #f5f5f5;
            color: #2a2a2a;
        }
        
        .video-placeholder {
            background: linear-gradient(135deg, #f0f0f0 0%, #e0e0e0 100%);
        }
        
        .data-provider-card {
            background: #ffffff;
            border: 1px solid #e9ecef;
            transition: all 0.3s ease;
        }
        
        .data-provider-card:hover {
            background: #ffffff;
            border-color: #AF9061;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0,0,0,0.08);
        }
        
        .btn-primary {
            background: #2d2d2d;
            color: #ffffff;
            transition: all 0.3s ease;
        }
        
        .btn-primary:hover {
            background: #AF9061;
        }
        
        .nav-link {
            color: #495057;
            transition: color 0.3s ease;
        }
        
        .nav-link:hover {
            color: #000000;
        }
        
        .announcement-bar {
            background: #2a2a2a;
            color: #ddd;
            border-bottom: 1px solid #e9ecef;
        }

        .hero-image-container {
            will-change: transform;
        }

    .carousel {
            display: flex;
            overflow: hidden;
        }
        
        .carousel-inner {
            display: flex;
            animation: scroll 40s linear infinite;
        }
        
        @keyframes scroll {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(-50%);
            }
        }
        
        .ticker-item {
            flex-shrink: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 40px;
            margin: 0 40px;
        }
 
 
    /* Accordion styles */
    .accordion-content { display: none; overflow: hidden; }
    .accordion-content.open { display: block; }
    .accordion-chevron { transition: transform 0.2s ease; }
    .accordion-chevron.open { transform: rotate(180deg); }
 
        
        .cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: white;
            border-top: 1px solid #e5e7eb;
            padding: 24px;
            z-index: 1000;
            transform: translateY(100%);
            transition: transform 0.3s ease-in-out;
        }
        
        .cookie-banner.show {
            transform: translateY(0);
        }
        
        .cookie-banner.hide {
            transform: translateY(100%);
        }
        
        .modal {
            display: none;
            position: fixed;
            z-index: 1000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
        }
        
        .modal.show {
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .modal-content {
            background-color: white;
            padding: 2rem;
            border-radius: 0.5rem;
            max-width: 500px;
            width: 90%;
            position: relative;
            animation: modalSlideIn 0.3s ease-out;
        }
        
        @keyframes modalSlideIn {
            from {
                opacity: 0;
                transform: translateY(-20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .close {
            position: absolute;
            top: 1rem;
            right: 1rem;
            font-size: 1.5rem;
            font-weight: bold;
            cursor: pointer;
            color: #6B7280;
        }
        
        .close:hover {
            color: #374151;
        }
        
        @keyframes fadeIn {
            from {
                opacity: 0;
            }

            to {
                opacity: 1;
            }
        }

        .fade-in {
            animation: fadeIn 1s ease-in-out;
        }

        .fade-in-delayed {
            animation: fadeIn 1s ease-in-out 0.5s both;
        }

        @keyframes scaleUp {
            from {
                transform: scale(1.1);
            }

            to {
                transform: scale(1);
            }
        }

        .scale-up-bg {
            animation: scaleUp 20s ease-out;
        }

        .carousel {
            display: flex;
            overflow: hidden;
        }
        
        .carousel-inner {
            display: flex;
            animation: scroll 20s linear infinite;
        }
        
        @keyframes scroll {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(-50%);
            }
        }
        
        .ticker-item {
            flex-shrink: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 40px;
            margin: 0 40px;
        }
    </style>