    :root {
        --primary-color: #1b1464;
        --secondary-color: #244fba;
        --accent-color: #667eea;
        --gradient-1: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        --gradient-2: linear-gradient(135deg, #1b1464 0%, #244fba 100%);
    }

    .agencies-page {
        min-height: 100vh;
        /* background: var(--gradient-1); */
        padding: 40px 20px;
    }

    .agencies-container {
        max-width: 1400px;
        margin: 0 auto;
    }

    .page-header {
        text-align: center;
        margin-bottom: 50px;
        animation: fadeInDown 0.6s ease-out;
    }

    .page-header h1 {
        color: white;
        font-size: 3rem;
        font-weight: 700;
        margin-bottom: 15px;
        text-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }

    .page-header p {
        color: rgba(255, 255, 255, 0.9);
        font-size: 1.2rem;
        font-weight: 300;
    }

    /* Accordion Styles */
    .hotel-accordion {
        margin-bottom: 20px;
        animation: fadeInUp 0.6s ease-out backwards;
    }

    .hotel-accordion:nth-child(1) {
        animation-delay: 0.1s;
    }

    .hotel-accordion:nth-child(2) {
        animation-delay: 0.2s;
    }

    .hotel-accordion:nth-child(3) {
        animation-delay: 0.3s;
    }

    .hotel-accordion:nth-child(4) {
        animation-delay: 0.4s;
    }

    .hotel-accordion:nth-child(5) {
        animation-delay: 0.5s;
    }

    .hotel-accordion:nth-child(6) {
        animation-delay: 0.6s;
    }

    .hotel-accordion:nth-child(7) {
        animation-delay: 0.7s;
    }

    .accordion-header {
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        padding: 25px 30px;
        border-radius: 15px;
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
        transition: all 0.3s ease;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    }

    .accordion-header:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 30px rgba(0, 0, 0, 0.15);
        background: white;
    }

    .accordion-header.active {
        background: var(--gradient-2);
        color: white;
        border-radius: 15px 15px 0 0;
    }

    .hotel-name {
        font-size: 1.5rem;
        font-weight: 600;
        display: flex;
        align-items: center;
        gap: 15px;
    }

    .hotel-icon {
        font-size: 1.8rem;
    }

    .accordion-icon {
        font-size: 1.5rem;
        transition: transform 0.3s ease;
    }

    .accordion-header.active .accordion-icon {
        transform: rotate(180deg);
    }

    .accordion-content {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease;
        background: white;
        border-radius: 0 0 15px 15px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    }

    .accordion-content.active {
        max-height: 1500px;
    }

    .content-grid {
        padding: 30px;
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        gap: 25px;
    }

    .category-column {
        text-align: center;
    }

    .category-header {
        font-size: 1.3rem;
        font-weight: 600;
        color: var(--primary-color);
        margin-bottom: 20px;
        padding-bottom: 10px;
        border-bottom: 3px solid var(--accent-color);
    }

    .download-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        padding: 12px 20px;
        background: var(--gradient-2);
        color: white;
        text-decoration: none;
        border-radius: 10px;
        margin-bottom: 12px;
        transition: all 0.3s ease;
        font-weight: 500;
        font-size: 0.95rem;
        box-shadow: 0 2px 10px rgba(36, 79, 186, 0.2);
    }

    .download-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 20px rgba(36, 79, 186, 0.4);
        background: var(--gradient-1);
    }

    .download-btn i {
        font-size: 1.1rem;
    }

    /* Animations */
    @keyframes fadeInDown {
        from {
            opacity: 0;
            transform: translateY(-30px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* Responsive Design */
    @media (max-width: 1200px) {
        .content-grid {
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }
    }

    @media (max-width: 768px) {
        .page-header h1 {
            font-size: 2rem;
        }

        .content-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
            padding: 20px;
        }

        .accordion-header {
            padding: 20px;
        }

        .hotel-name {
            font-size: 1.2rem;
        }

        .category-header {
            font-size: 1.1rem;
        }

        .download-btn {
            padding: 10px 15px;
            font-size: 0.85rem;
        }
    }

    @media (max-width: 480px) {
        .agencies-page {
            padding: 20px 10px;
        }

        .content-grid {
            grid-template-columns: 1fr;
            gap: 12px;
            padding: 15px;
        }

        .hotel-name {
            font-size: 1rem;
        }

        .hotel-icon {
            font-size: 1.3rem;
        }

        .accordion-icon {
            font-size: 1.2rem;
        }
    }