body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #f4f4f4;
}

header {
    background: url('../images/hero-bg.jpg') no-repeat center center/cover;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
}

h1 {
    font-size: 3rem;
    margin: 0;
    animation: fadeIn 1s ease-in-out;
}

p {
    font-size: 1.2rem;
    margin: 20px 0;
    animation: fadeIn 1.5s ease-in-out;
}

section {
    padding: 50px 20px;
    text-align: center;
}

h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.service {
    display: inline-block;
    width: 30%;
    margin: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    transition: transform 0.3s;
}

.service:hover {
    transform: translateY(-5px);
}

.service img {
    width: 50px;
    height: 50px;
}

.service p {
    font-size: 1rem;
    color: #555;
}

footer {
    text-align: center;
    padding: 20px;
    background-color: #333;
    color: white;
}

@media (max-width: 768px) {
    .service {
        width: 80%;
    }

    h1 {
        font-size: 2.5rem;
    }

    p {
        font-size: 1rem;
    }
}