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

body.poster {
    background-attachment: fixed;
}

.top-5 {
    top: 5px;
}

/* General Styles */
body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
}

/* Header Styles */
.navbar {
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.navbar-brand {
    font-weight: bold;
}

/* Hero Section */
.hero {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.hero h1 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

/* Card Styles */
.card {
    border: none;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

.card-body {
    padding: 1.5rem;
}

/* Price Tags */
.price {
    font-size: 1.25rem;
    font-weight: bold;
    color: #0d6efd;
    margin-top: 1rem;
}

/* Contact Form */
.form-control {
    padding: 0.75rem;
    border-radius: 0.5rem;
}

textarea.form-control {
    min-height: 120px;
}

/* Footer */
footer {
    margin-top: 2rem;
}

footer a {
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* Section Spacing */
section {
    padding: 4rem 0;
}

section h2 {
    margin-bottom: 2rem;
    font-weight: bold;
}

/* List Styles */
.list-unstyled li {
    padding: 0.5rem 0;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero {
        padding: 40px 0;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    section {
        padding: 2rem 0;
    }
}
