:root {

    --primary: #A5001E;
    --primary-hover: #870018;

    --dark: #2F3437;
    --text: #5F666B;

    --light: #FAFAF8;
    --section: #F1F3F4;
    --white: #FFFFFF;

    --border: #D9DADB;
    --shadow: rgba(0, 0, 0, 0.08);
}

* {
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

body {
    margin: 0;
    background-color: var(--light);
    color: var(--text);
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}



#about-us {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h1 {
    color: var(--dark);
    font-size: 3rem;
    margin: 0;
}

.about-content-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;

    margin-bottom: 5rem;
}

.about-content p {
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.about-image img {
    width: 100%;
    display: block;

    border-radius: 12px;

    box-shadow: 0 8px 20px var(--shadow);
}

.about-stats {

    display: flex;
    justify-content: space-around;

    background-color: var(--section);

    border-radius: 12px;

    padding: 3rem;

    margin-bottom: 5rem;
}

.stat {
    text-align: center;
}

.stat-number {

    display: block;

    color: var(--primary);

    font-size: 3rem;
    font-weight: 700;
}

.stat-label {
    color: var(--text);
}

#areas-covered {
    margin-bottom: 5rem;
}

#areas-covered h2 {
    color: var(--dark);
}

#areas-covered ul {

    display: flex;
    flex-wrap: wrap;

    gap: 1rem;

    padding: 0;
}

#areas-covered li {

    list-style: none;

    background-color: var(--section);

    padding: 0.75rem 1.25rem;

    border-radius: 999px;

    color: var(--dark);
}

#contact-cta {

    text-align: center;

    background-color: var(--section);

    padding: 4rem;

    border-radius: 12px;
}

#contact-cta h2 {
    color: var(--dark);
}

.quote-button {

    display: inline-block;

    margin-top: 1rem;

    background-color: var(--primary);

    color: white;

    text-decoration: none;

    padding: 0.9rem 2rem;

    border-radius: 6px;

    font-weight: 600;
}

.quote-button:hover {
    background-color: var(--primary-hover);
}

footer {

    text-align: center;

    padding: 2rem;

    background-color: var(--dark);

    color: white;
}

footer a {
    color: white;
}

@media (max-width: 768px) {

    .about-content-wrapper {
        grid-template-columns: 1fr;
    }

    .about-stats {
        flex-direction: column;
        gap: 2rem;
    }

    .section-header h1 {
        font-size: 2rem;
    }

}