body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #f4f4f4;
}

.header {
    position: relative;
    text-align: center;
    color: #fff;
}

.banner-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    filter: brightness(60%);
}

.header-text {
    position: absolute;
    top: 50px;
    left: 0;
    width: 100%;
    text-align: center;
}

.header h1 {
    font-size: 2.5em;
    margin-bottom: 0.2em;
}

.header p {
    font-size: 1.3em;
}

.services {
    background: #fff;
    padding: 40px 0;
    text-align: center;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 36px;
    margin-top: 30px;
}

.service-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 160px;
}

.service-item img {
    width: 80px;
    height: 80px;
    margin-bottom: 18px;
}

.contact {
    background: #fff;
    padding: 40px 0;
    text-align: center;
}

.contact-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    max-width: 500px;
    margin: 0 auto;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 1em;
}

.contact-form textarea {
    resize: vertical;
    min-height: 80px;
}

.contact-form button {
    padding: 12px 32px;
    border: none;
    background: #0077cc;
    color: #fff;
    border-radius: 6px;
    font-size: 1em;
    cursor: pointer;
}

.contact-form button:hover {
    background: #005fa3;
}
form {
    background-color: #fff;
    padding: 30px;
    max-width: 600px;
    margin: auto;
    border-radius: 8px;
}
input, textarea {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border-radius: 4px;
    border: 1px solid #ccc;
}
button {
    padding: 10px 20px;
    background-color: #333;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}
footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 20px;
}