.paragraph-section{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.paragraph-section p {
    background: var(--bg-body);
    padding: 2vh 5vw;
    font-size: 1.15rem;
    line-height: 1.8;
    width: 100%;
    text-align: center;
}

.posters-section {
    display: flex;
    justify-content: center;
    gap: 30vh;
    margin-bottom: 5vh;
    height: 60vh;
    flex-direction: row;
}

.posters-section img {
    height: 100%;
    border: 2px solid var(--primary-blue);
    border-radius: 20px;
}

.btn-form {
    background: var(--primary-blue);
    color: white;
    padding: 2vh 2vw;
    margin-bottom: 5vh;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: bold;
    transition: transform 0.3s, background 0.3s;
    box-shadow: 0 10px 20px rgba(0,74,153,0.3);
    width: 20%;
}

.btn-form:hover {
    transform: translateY(-5px);
}

@media (max-width: 768px) {
    .paragraph-section p {
        padding: 2vh 2vw;
        font-size: 1rem;
    }

    .posters-section {
        flex-direction: column;
        gap: 20px;
        height: auto;
        margin-bottom: 20px;
    }

    .posters-section img {
        height: auto;
        max-width: 100%;
    }
}