    .video-background {
        position: relative;
        width: 100%;
        height: 100vh;
        overflow: hidden;
    }

    .video-background video {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        min-width: 100%;
        min-height: 100%;
        z-index: 1;
    }

    .overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 87, 160, 0.7);
        z-index: 2;
    }

    .division-card {
        transition: all 0.3s ease;
    }

    .division-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
            0 10px 10px -5px rgba(0, 0, 0, 0.04);
    }

    .nav-link {
        position: relative;
    }

    .nav-link:after {
        content: '';
        position: absolute;
        width: 0;
        height: 2px;
        bottom: 0;
        left: 0;
        background-color: #D4AF37;
        transition: width 0.3s ease;
    }

    .nav-link:hover:after {
        width: 100%;
    }

    .active-nav:after {
        width: 100%;
    }

    .contact-input {
        transition: all 0.3s ease;
    }

    .contact-input:focus {
        border-color: #0057A0;
        box-shadow: 0 0 0 3px rgba(0, 87, 160, 0.3);
    }

    .animate-float {
        animation: float 3s ease-in-out infinite;
    }

    @keyframes float {
        0% {
            transform: translateY(0);
        }

        50% {
            transform: translateY(-15px);
        }

        100% {
            transform: translateY(0);
        }
    }

    .whatsapp-btn {
        position: relative;
        width: 60px;
        height: 60px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 0 20px rgba(37, 211, 102, 0.5);
        animation: pulse 2s infinite;
    }

    .whatsapp-btn::before {
        content: '';
        position: absolute;
        width: 100%;
        height: 100%;
        border-radius: 50%;
        border: 2px solid #25D366;
        animation: ring 2s infinite;
        pointer-events: none;
    }

    @keyframes pulse {
        0% {
            transform: scale(1);
        }

        50% {
            transform: scale(1.1);
        }

        100% {
            transform: scale(1);
        }
    }

    @keyframes ring {
        0% {
            transform: scale(1);
            opacity: 1;
        }

        100% {
            transform: scale(1.5);
            opacity: 0;
        }
    }

    /* FAQ Accordion Styles */
    .faq-item {
        border-bottom: 1px solid #e5e7eb;
        overflow: hidden;
    }

    .faq-question {
        background-color: #f9fafb;
        width: 100%;
        padding: 20px;
        text-align: left;
        font-size: 18px;
        font-weight: 600;
        color: #1e293b;
        border: none;
        outline: none;
        cursor: pointer;
        position: relative;
        transition: background-color 0.3s ease;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .faq-question:hover {
        background-color: #f3f4f6;
    }

    .faq-question .arrow {
        transition: transform 0.3s ease;
        color: #0057A0;
        font-size: 14px;
    }

    .faq-question.active .arrow {
        transform: rotate(180deg);
    }

    .faq-answer {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        background-color: #ffffff;
    }

    .faq-answer-content {
        padding: 0 20px 20px;
        font-size: 16px;
        line-height: 1.6;
        color: #4b5563;
    }

    .partner-logo {
        filter: grayscale(100%);
        transition: filter 0.3s ease;
    }

    .partner-logo:hover {
        filter: grayscale(0%);
    }