body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    text-align: center;
    background-color: #f4f4f4;
}

header, footer {
    background-color: #0A47A9;
    color: white;
    padding: 15px;
}

.service-container {
    
    display: flex;
    flex-direction: ;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 20px;
}

.service-card {
    background: white;
    padding: 15px;
    width: 280px;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    text-align: center;
}

.service-card img {
    width: 50%;
    border-radius: 5px;
    height: 220px;
    object-fit: cover;
}

.book-btn {
    display: block;
    background-color: #F57C00;
    color: white;
    padding: 10px;
    text-decoration: none;
    margin-top: 10px;
    border-radius: 5px;
    font-weight: bold;
}

.book-btn:hover {
    background-color: #e65c00;
}
