@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 {
    background: linear-gradient(to bottom, white, var(--bs-primary));
    padding: 50px 0;
    font-family: 'Arial', sans-serif;
}

.contact-form {
    max-width: 500px;
    margin: 0 auto;
    background: rgba(0, 0, 0, 0.7);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.contact-form h2 {
    color: #fff;
    text-align: center;
    font-size: 28px;
    margin-bottom: 20px;
    font-weight: bold;
}

.form-label {
    color: #fff;
    font-size: 16px;
    margin-bottom: 8px;
    display: block;
}

.form-control {
    width: 100%;
    padding: 10px;
    border-radius: 5px;
    border: none;
    margin-bottom: 20px;
    font-size: 16px;
    background-color: #fff;
    color: #333;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.form-control:focus {
    outline: none;
    box-shadow: 0 0 8px rgba(255, 165, 0, 0.8);
}

button.btn {
    width: 100%;
    padding: 12px;
    background-color: #ff7e5f;
    border: none;
    border-radius: 5px;
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

button.btn:hover {
    background-color: #feb47b;
}

.form-control,
button.btn {
    transition: all 0.3s ease;
}

.contact-form input,
.contact-form textarea {
    font-size: 16px;
}