.maincontent {
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
    border: none;
}

/* Hero Section */
.service-areas-hero {
    position: relative;
    background: linear-gradient(135deg, #6e6f71 0%, #8bc540 100%);
    padding: 120px 40px 100px;
    overflow: hidden;
}

.hero-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.1) 1px, transparent 0);
    background-size: 40px 40px;
    opacity: 0.3;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-content {
    text-align: center;
    color: white;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: white;
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.service-areas-hero h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 1.1;
    color: white;
}

.hero-description {
    font-size: 20px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.hero-services {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.service-badge {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 12px 24px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    font-weight: 600;
    font-size: 15px;
}

.service-badge svg {
    width: 20px;
    height: 20px;
    fill: white;
}

/* Service Regions Section */
.service-regions-section {
    padding: 100px 40px;
    background: #f9fafb;
}

.regions-container {
    max-width: 1400px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 42px;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 16px;
}

.section-header p {
    font-size: 18px;
    color: #64748b;
    line-height: 1.7;
}

.regions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(600px, 1fr));
    gap: 40px;
}

.region-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    border: 2px solid #e2e8f0;
    transition: all 0.3s;
}

.region-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    border-color: #8bc53f;
}

.region-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 3px solid #8bc53f;
}

.region-icon {
    width: 60px;
    height: 60px;
    background: rgba(37, 99, 235, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.region-icon svg {
    width: 28px;
    height: 28px;
    fill: #8bc53f;
}

.region-header h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 4px;
}

.region-subtitle {
    font-size: 15px;
    color: #64748b;
    margin: 0;
}

.cities-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 20px;
}

.city-item {
    padding: 12px 16px;
    background: #f8fafc;
    border-radius: 8px;
    font-size: 15px;
    color: #475569;
    font-weight: 500;
    transition: all 0.2s;
}

.city-item:hover {
    background: rgba(37, 99, 235, 0.1);
    color: #8bc53f;
}

.region-note {
    font-size: 14px;
    color: #8bc53f;
    font-weight: 600;
    font-style: italic;
    margin: 0;
    padding-top: 16px;
    border-top: 1px solid #e2e8f0;
}

/* Local Expertise Section */
.local-expertise-section {
    padding: 100px 40px;
    background: white;
}

.expertise-container {
    max-width: 1400px;
    margin: 0 auto;
}

.section-header-center {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.section-badge {
    display: inline-block;
    background: rgba(37, 99, 235, 0.1);
    color: #8bc53f;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.section-header-center h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 42px;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 16px;
    line-height: 1.2;
}

.section-header-center p {
    font-size: 18px;
    color: #64748b;
    line-height: 1.7;
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.expertise-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    border: 2px solid #e2e8f0;
    transition: all 0.3s;
    text-align: center;
}

.expertise-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    border-color: #8bc53f;
}

.expertise-icon {
    width: 70px;
    height: 70px;
    background: rgba(37, 99, 235, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    transition: all 0.3s;
}

.expertise-card:hover .expertise-icon {
    background: #8bc53f;
    transform: scale(1.1);
}

.expertise-icon svg {
    width: 32px;
    height: 32px;
    fill: #8bc53f;
    transition: all 0.3s;
}

.expertise-card:hover .expertise-icon svg {
    fill: white;
}

.expertise-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 12px;
}

.expertise-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #64748b;
}

/* Services Overview Section */
.services-overview-section {
    padding: 100px 40px;
    background: #f9fafb;
}

.services-container {
    max-width: 1400px;
    margin: 0 auto;
}

.services-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    border: 2px solid #e2e8f0;
    transition: all 0.3s;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    border-color: #8bc53f;
}

.service-icon {
    width: 70px;
    height: 70px;
    background: rgba(37, 99, 235, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: all 0.3s;
}

.service-card:hover .service-icon {
    background: #8bc53f;
    transform: scale(1.1);
}

.service-icon svg {
    width: 32px;
    height: 32px;
    fill: #8bc53f;
    transition: all 0.3s;
}

.service-card:hover .service-icon svg {
    fill: white;
}

.service-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 20px;
}

.service-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
}

.service-card li {
    padding: 8px 0;
    font-size: 15px;
    color: #64748b;
    position: relative;
    padding-left: 20px;
}

.service-card li::before {
    content: '+';
    position: absolute;
    left: 0;
    color: #8bc53f;
    font-weight: 700;
}

.service-link {
    color: #8bc53f;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    display: inline-block;
    transition: all 0.3s;
}

.service-link:hover {
    transform: translateX(4px);
}

/* CTA Section */
.cta-section {
    position: relative;
    background: linear-gradient(135deg, #8bc53f 0%, #6d6e70 100%);
    padding: 100px 40px;
    overflow: hidden;
}

.cta-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.1) 1px, transparent 0);
    background-size: 40px 40px;
    opacity: 0.3;
}

.cta-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
    color: white;
}

.cta-content h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 40px;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-cta {
    background: white;
    color: #8bc53f;
    padding: 16px 32px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
    border: 2px solid white;
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.service-link:hover,
.btn-cta:hover {
color: #6d6e70;
}

/* Responsive */
@media (max-width: 1024px) {
    .regions-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .service-areas-hero {
        padding: 120px 24px 80px;
    }

    .service-areas-hero h1 {
        font-size: 40px;
    }

    .hero-description {
        font-size: 17px;
    }

    .service-regions-section,
    .local-expertise-section,
    .services-overview-section,
    .cta-section {
        padding: 60px 24px;
    }

    .section-header h2,
    .section-header-center h2,
    .cta-content h2 {
        font-size: 32px;
    }

    .region-card {
        padding: 30px;
    }

    .cities-grid {
        grid-template-columns: 1fr;
    }

    .expertise-grid,
    .services-cards {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .btn-cta {
        width: 100%;
        justify-content: center;
    }
}