:root {
    --primary-color: #fcd900;
    --secondary-color: #001e6c;
    --accent-color: #e8630a;
    --text-dark: #28282a;
    --light-bg: #f8f9fa;
}

.hero-section {
    background: linear-gradient(98deg, #284772d9 0%, #ed9037 100%);
    color: white;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    height: 100px;
    background: white;
    transform: skewY(-2deg);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.feature-card {
    border: none;
    border-radius: 15px;
    transition: all 0.3s ease;
    height: 100%;
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    padding: 30px;
    text-align: center;
    border: 1px solid #eee;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.feature-icon {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.process-step {
    position: relative;
    padding: 30px;
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: var(--text-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.8rem;
    margin: 0 auto 20px;
    border: 4px solid white;
    box-shadow: 0 0 0 4px var(--primary-color);
}

.faq-section {
    background: var(--light-bg);
    padding: 80px 0;
}

.accordion-button:not(.collapsed) {
    background-color: var(--primary-color);
    color: var(--text-dark);
}

.cta-box {
    background: var(--accent-color);
    color: white;
    padding: 60px;
    border-radius: 30px;
    margin-top: -80px;
    position: relative;
    z-index: 10;
    box-shadow: 0 20px 50px rgba(232, 99, 10, 0.3);
}

.btn-custom {
    background: var(--primary-color);
    color: var(--text-dark);
    font-weight: 700;
    padding: 15px 40px;
    border-radius: 50px;
    transition: all 0.3s ease;
    border: none;
    text-transform: uppercase;
    font-size: 1.1rem;
}

.btn-custom:hover {
    background: white;
    color: var(--accent-color);
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.service-img {
    border-radius: 20px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
}


.localized-content {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    border-left: 5px solid var(--primary-color);
    margin-top: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

/* Nearby Areas Styles */
.nearby-areas {
    background: var(--light-bg);
    padding: 60px 0;
}

.area-link {
    display: block;
    background: white;
    padding: 12px 20px;
    border-radius: 10px;
    text-decoration: none;
    color: var(--secondary-color);
    font-weight: 600;
    transition: all 0.3s ease;
    border: 1px solid #eee;
    margin-bottom: 10px;
    text-align: center;
}

.area-link:hover {
    background: var(--primary-color);
    color: var(--text-dark);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* FAQ Styles */
.faq-modern {
    background: white;
    padding: 60px 0;
}

.faq-card {
    border: 1px solid #eee;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.faq-card:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.faq-header {
    background: #fdfdfd;
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: var(--secondary-color);
}

.faq-body {
    padding: 20px;
    background: white;
    border-top: 1px solid #eee;
    color: #666;
    display: none;
}

.faq-card.active .faq-body {
    display: block;
}

.faq-card.active .faq-header {
    background: var(--primary-color);
    color: var(--text-dark);
}

.faq-icon {
    transition: transform 0.3s ease;
}

.faq-card.active .faq-icon {
    transform: rotate(180deg);
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
        /* Reduce from 3.5rem */
    }

    .cta-box {
        margin-top: -40px;
        padding: 30px 20px;
    }

    .faq-header {
        font-size: 1rem;
    }

    .process-step {
        padding: 15px;
    }

    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
}