/* Centered Title */
.centered-title {
    text-align: center;
    padding: 0 24px 40px;
    max-width: 1300px;
    margin-top: 30vh;
}

.centered-title h1 {
    font-size: 54px;
    font-weight: bold;
    color: black;
    line-height: 1.2;
    margin: 0;
}

/* Search Section */
.search-section {
    max-width: 1300px;
    padding: 0 24px 40px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Mobile responsive styles */
@media (max-width: 1440px) {
    .sidebar {
        display: none;
    }
    
    .main-wrapper {
        margin-left: 0;
    }
}

@media (max-width: 768px) {
    .centered-title {
        padding: 40px 8px 30px;
        margin-top: 20vh;
    }

    .centered-title h1 {
        font-size: 36px;
    }
}