body {
    margin: 0;
    font-family: 'Roboto', sans-serif;
    background: #f4f4f4;
    color: #222;
}

header {
    background: #111;
    padding: 10px 0;
}

.navbar {
    width: 90%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-main {
    color: #f2c200;
    font-family: 'Oswald', sans-serif;
    font-size: 2rem;
    font-weight: 700;
}

.logo-sub {
    color: #fff;
    font-family: 'Oswald', sans-serif;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 1rem;
    font-family: 'Oswald', sans-serif;
}

.call-btn {
    background: #c62828;
    padding: 10px 15px;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-family: 'Oswald', sans-serif;
}

.banner {
    background: #f2c200;
    text-align: center;
    padding: 10px;
    font-family: 'Oswald', sans-serif;
    font-size: 1.2rem;
}

.hero {
    background: url('https://images.unsplash.com/photo-1581091870622-1e7a6a3e6b1d') center/cover no-repeat;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    text-shadow: 2px 2px 5px black;
}

.hero-content h1 {
    font-family: 'Oswald', sans-serif;
    font-size: 3rem;
}

.hero-actions {
    margin-top: 20px;
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-btn {
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-family: 'Oswald', sans-serif;
}

.hero-btn.primary {
    background: #f2c200;
    color: #000;
}

.hero-btn.secondary {
    background: #c62828;
    color: #fff;
}

.services, .areas, .contact {
    padding: 50px 10%;
    text-align: center;
}

.service-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-top: 30px;
}

.service-card {
    background: white;
    padding: 20px;
    width: 250px;
    margin: 10px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.map-wrapper {
    margin-top: 30px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.contact form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 60%;
    margin: auto;
}

.contact-note {
    margin-bottom: 20px;
}

input, textarea {
    padding: 12px;
    border-radius: 5px;
    border: 1px solid #ccc;
    font-family: 'Roboto', sans-serif;
}

textarea {
    min-height: 120px;
}

.btn {
    background: #111;
    color: white;
    padding: 12px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    font-family: 'Oswald', sans-serif;
}

footer {
    background: #111;
    color: white;
    text-align: center;
    padding: 15px;
    margin-top: 40px;
}
