/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary), var(--dark));
    color: white;
    padding: 3rem 5%;
    text-align: center;
}

.hero h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 2rem;
    opacity: 0.9;
}

.search-container {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    margin: 2rem auto 0;
    max-width: 1000px;
    box-shadow: var(--shadow);
}

.search-filters {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.filter-group {
    display: flex;
    flex-direction: column;
}

.filter-group label {
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--dark);
}

.search-filters select,
.search-filters input {
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

.search-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.advanced-search {
    color: var(--secondary);
    text-decoration: none;
    font-weight: 500;
    cursor: pointer;
}