.area-page {
    font-family: Arial, sans-serif;
    color: #222;
    line-height: 1.7;
}

/* CONTAINER */
.area-page .container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    position: relative;
    z-index: 2;
}

/* HERO */
.area-hero {
    padding: 80px 0;
    text-align: center;
    background: #f5f5f5;
    padding: 80px 0;
    text-align: center;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw -960px + 50%);
    max-width: 100vw;
    width: 100vw;
    background-size: cover;
    padding-top: 250px;
    padding-bottom: 250px;
}
/*
.area-hero::before {
    content: "";
    position: absolute;
    pointer-events: none;
    top: -0px;
    left: -0px;
    width: calc(100% + 0px + 0px);
    height: calc(100% + 0px + 0px);
    border-color: inherit;
    background: var(--ast-global-color-7);
    opacity: 0.4;
}*/
.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55);
}

.area-hero h1 {
    font-size: 42px;
    margin-bottom: 20px;
}

.area-hero p {
    font-size: 18px;
    max-width: 800px;
    margin: auto;
}

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

.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 14px 28px;
    text-decoration: none;
    border-radius: 5px;
    margin: 5px;
    font-weight: bold;
}

.btn-primary {
    background: #c8102e;
    color: #fff;
}

.btn-primary:hover {
    background: #a30d25;
}

.btn-secondary {
    background: #222;
    color: #fff;
}

.btn-secondary:hover {
    background: #000;
}

/* TRUST SECTION */
.trust-section {
    padding: 50px 0;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.trust-box {
    background: #f7f7f7;
    padding: 25px;
    text-align: center;
    border-radius: 8px;
}

/* CONTENT */
.area-content-section {
    padding: 70px 0;
}

.content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.sidebar-box {
    position: sticky;
    top: 20px;
}

.quote-box {
    background: #f5f5f5;
    padding: 30px;
    border-radius: 8px;
}

/* SERVICES */
.services-section {
    padding: 70px 0;
    background: #fafafa;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.service-card {
    background: #fff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

/* AREAS */
.areas-covered {
    padding: 70px 0;
}

.areas-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.areas-grid a {
    background: #f2f2f2;
    padding: 10px 18px;
    border-radius: 30px;
    text-decoration: none;
    color: #222;
}

/* PROJECTS */
.projects-section {
    padding: 70px 0;
    background: #fafafa;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.project-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
}

.project-card img {
    width: 100%;
    display: block;
}

/* FAQ */
.faq-section {
    padding: 70px 0;
}

.faq-item {
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid #ddd;
}

/* MAP */
.map-section {
    padding: 70px 0;
}

/* CONTACT */
.contact-section {
    padding: 70px 0;
    background: #f7f7f7;
}

/* MOBILE */
@media(max-width: 768px) {

    .trust-grid,
    .services-grid,
    .projects-grid,
    .content-grid {
        grid-template-columns: 1fr;
    }

    .area-hero h1 {
        font-size: 32px;
    }

    .hero-buttons a {
        display: block;
        margin-bottom: 10px;
    }
}