h1.title{
    font-family: Georgia;
    font-size: 3rem;
    margin-bottom: 0.25rem;
}
p.subtitle {
    margin-bottom: 0;
    color: #999;
}
.center-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: calc(100vh - 230px); /* Adjust based on header/footer height */}
.index-search-container {
    width: 100%;
    max-width: 1200px; /* Matches popular-searches max-width */
}
.popular-searches {
    width: 100%;
    max-width: 1200px;
    margin: 1rem auto; /* Reduced margin for tighter spacing */
}
.bg-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    opacity: 0.5;
}
@media (max-width: 768px) {
    .bg-video {
        display: none;
    }
    body {
        background-color: #f4f4f4; /* Fallback background color for mobile */
    }
}