.services-intro {
    background-color: #fff;
    padding: 4rem 1rem;
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.services-text {
    flex: 1 1 55%;
}

.services-text h1 {
    font-size: 2.5rem;
    font-weight: bold;
    line-height: 1.3;
    margin-bottom: 1.5rem;
}

.highlight-red {
    color: #dc0000;
}

.services-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #333;
}

.services-map {
    flex: 1 1 40%;
}

.services-map img {
    width: 100%;
    height: auto;
    border-radius: 6px;
    
}

@media (max-width: 768px) {
    .services-container {
        flex-direction: column;
    }

    .services-text h1 {
        font-size: 2rem;
        text-align: center;
    }

    .services-text, .services-map {
        flex: 1 1 100%;
        text-align: center;
    }
}



.service-areas {
    padding: 4rem 2rem;
    background-color: #fff;
}

.service-areas .content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.service-areas h2 {
    font-size: 2.2rem;
    font-weight: bold;
    margin-bottom: 3rem;
    color: #222;
    text-align: left;
}

.highlight-red {
    color: #dc0000;
}

.service-block {
    display: flex;
    align-items: flex-start;
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.service-block img {
    flex-shrink: 0;
    width: 250px;
    max-width: 100%;
    height: auto;
}

.service-text {
    flex: 1;
}

.service-text h3 {
    font-size: 1.4rem;
    font-weight: bold;
    margin-bottom: 0.6rem;
    color: #222;
}

.service-text p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 0.6rem;
    color: #333;
}

.service-text p strong {
    color: #000;
}

@media (max-width: 768px) {
    .service-block {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .service-block img {
        width: 200px;
        margin-bottom: 1rem;
    }

    .service-text {
        text-align: left;
    }

    .service-areas h2 {
        text-align: center;
    }
}


.contact-cta {
    background-color: #7a7a7a;
    color: #fff;
    text-align: center;
    padding: 4rem 1rem;
}

.contact-container {
    max-width: 800px;
    margin: 0 auto;
}

.contact-cta h2 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.contact-cta p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.highlight-red {
    color: #dc0000;
}

.cta-button {
    font-family: 'Hammersmith One', sans-serif;
    display: inline-block;
    background-color: #222;
    color: #fff;
    text-decoration: none;
    padding: 0.8rem 1.6rem;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.3s ease;
}

.cta-button:hover {
    background-color: #444;
}

@media (max-width: 768px) {
    .contact-cta h2 {
        font-size: 2rem;
    }

    .cta-button {
        width: 100%;
        max-width: 300px;
    }
}
