body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: #333;
    background-color: #f7f7f7;
}

header.hero {
    background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('https://images.unsplash.com/photo-1521540216272-a50305cd4421?auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
    color: #fff;
    text-align: center;
    padding: 80px 20px;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.cta-button {
    background-color: #e63946;
    color: #fff;
    padding: 12px 25px;
    text-decoration: none;
    font-size: 1rem;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #d62828;
}

section {
    padding: 40px 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.services .service {
    margin-bottom: 20px;
}

.services h2, .why-us h2, .contact h2 {
    text-align: center;
    margin-bottom: 30px;
}

.why-us ul {
    list-style: none;
    padding: 0;
}

.why-us li {
    background: url('https://cdn-icons-png.flaticon.com/512/190/190411.png') no-repeat left center;
    background-size: 20px 20px;
    padding-left: 35px;
    margin-bottom: 10px;
}

.contact form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contact form label {
    grid-column: span 2;
}

.contact form input,
.contact form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.contact form textarea {
    resize: vertical;
}

.contact form button {
    grid-column: span 2;
    background-color: #457b9d;
    color: #fff;
    padding: 12px 25px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.contact form button:hover {
    background-color: #1d3557;
}

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