.avp-section {
    padding: 6rem 2rem;
    background-color: #F5F7FA;
    display: flex;
    justify-content: center;
}

.avp-content {
    display: flex;
    max-width: 1600px;
    text-align: center;
    align-items: center;
    flex-direction: column;
}

.avp-title {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    font-style: normal;
    font-size: 52px;
    margin-bottom: 1rem;
}

.highlighted-word {
    color: #1F3B73;
    font-weight: 600;
}

.avp-description {
    font-family: 'Figtree', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 24px;
    color: #0B1427;
    max-width: 1360px;
    margin-bottom: 3rem;
}

.avp-video {
    display: block;
    margin: 0 auto;
    width: 1600px;
    max-width: 100%;
    height: 695px;
    border-radius: 4px;
    object-fit: cover;
}

@media (max-width: 1024px) {
    .avp-description {
        width: 90%;
        font-size: 20px;
    }

    .avp-video {
        width: 100%;
        height: auto;
        max-height: 500px;
    }

    .avp-title {
        font-size: 42px;
    }
}

@media (max-width: 768px) {
    .avp-section {
        padding: 3rem 1.5rem;
    }

    .avp-title {
        font-size: 32px;
    }

    .avp-description {
        font-size: 18px;
        width: 100%;
    }

    .avp-video {
        height: auto;
        max-height: 360px;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .avp-section {
        padding: 3rem 1rem;
    }

    .avp-title {
        font-size: 26px;
    }

    .avp-description {
        font-size: 16px;
        margin-bottom: 2rem;
    }

    .avp-video {
        max-height: 240px;
    }
}