.back-button {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    color: #DAA520;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    margin-bottom: 1rem;
}

.back-button:hover {
    color: #B8860B;
}

.back-button i {
    margin-right: 0.5rem;
    font-size: 1.1rem;
}

.search-container {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 1rem;
    background-color: #fff;
}

.search-container h1 {
    text-align: center;
    margin-bottom: 2rem;
    color: #DAA520;
    font-weight: bold;
}

.search-box {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

#searchInput {
    width: 60%;
    padding: 1rem;
    font-size: 1rem;
    border: 2px solid #FFE4B5;
    border-radius: 4px;
    outline: none;
    transition: border-color 0.3s ease;
}

#searchInput:focus {
    border-color: #DAA520;
    box-shadow: 0 0 5px rgba(218, 165, 32, 0.3);
}

#searchButton {
    padding: 1rem 2rem;
    background-color: #DAA520;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

#searchButton:hover {
    background-color: #B8860B;
}

.filter-section {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

#insuranceType {
    padding: 0.5rem;
    font-size: 1rem;
    border: 2px solid #FFE4B5;
    border-radius: 4px;
    outline: none;
    width: 200px;
    color: #333;
}

#insuranceType:focus {
    border-color: #DAA520;
    box-shadow: 0 0 5px rgba(218, 165, 32, 0.3);
}

.search-results {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    padding: 1rem;
}

.insurance-card {
    background-color: white;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 2px 4px rgba(218, 165, 32, 0.2);
    transition: all 0.3s ease;
    border: 1px solid #FFE4B5;
}

.insurance-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(218, 165, 32, 0.3);
}

.insurance-card h3 {
    margin-bottom: 1rem;
    color: #DAA520;
    font-weight: bold;
}

.insurance-card p {
    color: #666;
    margin-bottom: 1rem;
}

.insurance-card .price {
    font-weight: bold;
    color: #DAA520;
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .search-box {
        flex-direction: column;
    }

    #searchInput {
        width: 100%;
    }

    .search-results {
        grid-template-columns: 1fr;
    }
}
