body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    color: #333;
}

header {
    background: #2c3e50;
    color: #fff;
    padding: 20px 0;
    text-align: center;
}

nav a {
    color: #fff;
    text-decoration: none;
    padding: 10px 20px;
    display: inline-block;
}

nav a:hover {
    background: #1abc9c;
}

.container {
    max-width: 1100px;
    margin: auto;
    overflow: hidden;
    padding: 20px;
}

.hero {
    background: url('../assets/banner.jpeg') no-repeat center center/cover;
    color: #fff;
    padding: 100px 20px;
    text-align: center;
}

.services {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.service {
    background: #ecf0f1;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px #ccc;
    flex: 1 1 calc(33.333% - 40px);
    text-align: center;
}

.service img {
    width: 100%;
    height: auto;
    border-radius: 8px 8px 0 0;
}

.service:hover {
    background: #1abc9c;
    color: #fff;
}

.about, .contact {
    padding: 40px 20px;
    background: #f4f4f4;
}

.about img {
    width: 100%;
    max-width: 500px;
    display: block;
    margin: 0 auto 20px;
    border-radius: 10px;
}

.contact {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    background: #ecf0f1;
    padding: 60px 20px;
    border-radius: 8px;
    box-shadow: 0 0 15px #ccc;
    text-align: center;
}

.contact h2 {
    margin-bottom: 30px;
}

.contact p {
    margin: 10px 0;
    font-size: 18px;
}

.contact strong {
    color: #1abc9c;
}

footer {
    background: #2c3e50;
    color: #fff;
    text-align: center;
    padding: 20px 0;
}

button {
    background: #1abc9c;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
}

button:hover {
    background: #16a085;
}

@media (max-width: 768px) {
    .services {
        flex-direction: column;
    }
    .service {
        flex: 1 1 100%;
    }
    .contact {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 60px 20px;
    }
    header h1 {
        font-size: 24px;
    }
    nav a {
        padding: 10px;
    }
}
