* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: #333;
}

.hero {
    background: url('assets/hero.jpg') center/cover no-repeat;
    height: 95vh;
    position: relative;
    color: white;
}

.overlay {
    background: rgba(0,0,0,0.55);
    height: 100%;
    padding: 30px 60px;
}

.topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-weight: 700;
    font-size: 22px;
}

.top-contact span {
    margin-right: 20px;
    font-size: 14px;
}

.hero-content {
    margin-top: 120px;
    max-width: 750px;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 700;
}

.hero-content p {
    margin-top: 15px;
    font-size: 20px;
}

.hero-buttons {
    margin-top: 30px;
}

.btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    color: white;
    font-weight: 600;
    margin-right: 15px;
}

.large { padding: 15px 35px; font-size: 16px; }

.red { background: #e53935; }
.green { background: #2e7d32; }
.blue { background: #1565c0; }

.services {
    display: flex;
    justify-content: space-around;
    padding: 50px 60px;
    background: #f4f4f4;
}

.service {
    width: 30%;
}

.about {
    padding: 60px;
    background: white;
}

.about h2 {
    margin-bottom: 20px;
}

.map-section {
    background: #1e3a5f;
    color: white;
    text-align: center;
    padding: 60px 20px;
}

.map-box {
    background: white;
    color: #333;
    margin: 30px auto;
    padding: 60px;
    width: 70%;
    border-radius: 8px;
}

.contact {
    padding: 60px;
    text-align: center;
}

.contact-grid {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-top: 30px;
}

.contact-card {
    background: #f5f5f5;
    padding: 30px;
    border-radius: 10px;
    width: 300px;
}

.footer-cta {
    background: url('assets/hero.jpg') center/cover no-repeat;
    padding: 80px 20px;
    text-align: center;
    color: white;
}

.footer-cta h2 {
    margin-bottom: 30px;
}

.footer-cta p {
    margin-top: 40px;
    font-size: 14px;
}
