* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

body {
    color: #333;
    line-height: 1.6;
}

/* GLOBAL */
.container {
    max-width: 1200px;
    margin: auto;
    padding: 40px 20px;
}

h1, h2, h3 {
    color: #1f4d2b;
}

a {
    text-decoration: none;
}

/* HEADER */
.header {
    background: #1f4d2b;
    color: white;
}

.header-content {
    display: flex;
    align-items: center;
    gap: 20px;
}

.logo {
    width: 120px;
}

.header-info h1 {
    font-size: 32px;
}

.header-info p {
    font-size: 16px;
}

.phone {
    display: inline-block;
    margin-top: 10px;
    font-size: 20px;
    color: #fff;
    font-weight: bold;
}

/* HERO */
.hero {
    background: #f4f4f4;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.hero-img {
    width: 45%;
    border-radius: 8px;
}

.btn {
    display: inline-block;
    margin-top: 20px;
    padding: 15px 25px;
    background: #1f4d2b;
    color: white;
    font-weight: bold;
    border-radius: 5px;
}

/* SERVICES */
.services {
    background: white;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.service-box {
    background: #f9f9f9;
    padding: 25px;
    border-radius: 8px;
}

/* TRUST */
.trust {
    background: #eef5ef;
}

.trust ul {
    margin-top: 20px;
    list-style: none;
}

.trust li {
    margin-bottom: 10px;
    font-size: 18px;
}

/* LOCAL */
.local {
    background: white;
}

/* CTA */
.cta {
    background: #1f4d2b;
    color: white;
    text-align: center;
}

.btn-light {
    background: white;
    color: #1f4d2b;
}

/* FOOTER */
.footer {
    background: #111;
    color: white;
    text-align: center;
    font-size: 14px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .header-content,
    .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .hero-img {
        width: 100%;
    }
}
