body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    background-color: #f0f4f8;
}

.header {
    background: #7CC0FF;
    padding: 10px; 
    display: flex;
    align-items: center;
    justify-content: space-between; 
    color: white;
    flex-wrap: wrap; 
    height: 60px;
}

.header-title {
    font-family: 'Roboto', sans-serif;
    font-size: 25px;
    margin: 0;
}

.service-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding: 20px;
    justify-content: center;
}

.service-card {
    background: white;
    width: 250px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    text-align: center;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: scale(1.05);
}

.service-img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.service-card h2 {
    font-size: 18px;
    color: #333;
    margin: 10px 0;
}

.service-card p {
    font-size: 16px;
    color: #1e90ff;
    font-weight: bold;
    margin-bottom: 10px;
}

.details-btn {
    background-color: #007bff;
    color: white;
    padding: 10px;
    border: none;
    border-radius: 5px;
    font-size: 14px;
    text-transform: uppercase;
    cursor: pointer;
    display: inline-block;
    text-decoration: none;
    margin-bottom: 15px;
}

.details-btn:hover {
    background-color: #0056b3;
}

@media (max-width: 768px) {
    .header {
        flex-direction: column;
        text-align: center;
        padding: 8px; 
        height: auto; 
    }

    .header-title {
        font-size: 24px;
    }

    .filter-bar {
        justify-content: center;
        margin-top: 10px;
    }

    .service-card {
        width: 100%; 
    }
}
