@media (max-width:991px) {
    body.poster {
        margin-top: 60vh;
    }
}

body.poster {
    background-attachment: fixed;
}

.top-5 {
    top: 5px;
}

.pricing-container {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.pricing-card {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 20px;
    width: 300px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.plan-title {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

.price {
    font-size: 36px;
    font-weight: bold;
    color: var(--bs-primary);
    margin-bottom: 20px;
}

.features {
    list-style-type: none;
    margin-bottom: 20px;
}

.features li {
    font-size: 16px;
    color: #555;
    margin-bottom: 10px;
}

.benefits {
    font-size: 14px;
    color: #777;
    font-style: italic;
}

.featured {
    background: linear-gradient(135deg, var(--bs-primary), var(--bs-secondary));
    color: #fff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    animation: highlight 2s ease-in-out infinite;
}

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

    50% {
        transform: scale(1.05);
    }

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

.contact-form {
    background: linear-gradient(135deg, var(--bs-primary), var(--bs-secondary));
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0px 15px 35px rgba(0, 0, 0, 0.3);
    max-width: 600px;
    margin: 50px auto;
    transition: transform 0.3s ease-in-out;
}

.contact-form h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    text-align: center;
    color: #fff;
}

.contact-form .form-control {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid #fff;
    color: #fff;
    border-radius: 5px;
    margin-bottom: 20px;
    transition: background 0.3s;
}

.contact-form .form-control:focus {
    background: rgba(255, 255, 255, 0.2);
    border-color: #0d6efd;
}

.contact-form .btn {
    background-color: #0d6efd;
    color: #fff;
    border-radius: 5px;
    border: none;
    padding: 10px 20px;
    width: 100%;
    transition: background-color 0.3s;
}

.contact-form .btn:hover {
    background-color: #0056b3;
}

.contact-form .form-check-label {
    color: #fff;
}