
header {
    background-color: #4CAF50;
    color: white;
    padding: 20px;
    text-align: center;
}

header h1 {
    font-size: 3rem;
}

.services {
    display: flex;
    justify-content: space-around;
    padding: 40px;
}

.service {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 22%;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s forwards;
}

.service h3 {
    font-size: 1.5rem;
    margin-top: 30px;
}

.service p {
    font-size: 1rem;
    margin-top: 10px;
}

.service:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.icon img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 50%;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.book {
    background-color: #fff;
    padding: 20px;
    text-align: center;
    margin: 40px auto;
    width: 50%;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.book form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.book input, .book select {
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.book button {
    background-color: #4CAF50;
    color: white;
    padding: 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.book button:hover {
    background-color: #45a049;
}