/* Services Page Styles */
    
    /* Page Hero */
    .services-page-hero {
        padding: 9rem 0 2.5rem;
        background: #1E73BE;
        color: #ffffff;
        position: relative;
        overflow: hidden;
    }

    .services-hero-background {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(135deg, #1E73BE 0%, #155a94 100%);
        opacity: 1;
    }

    .services-hero-background::before {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        width: 40%;
        height: 100%;
        background: rgba(255, 255, 255, 0.05);
        clip-path: polygon(30% 0, 100% 0, 100% 100%, 0% 100%);
    }

    .services-hero-background::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 50%;
        height: 60%;
        background: rgba(0, 0, 0, 0.1);
        clip-path: polygon(0 40%, 100% 0, 100% 100%, 0 100%);
    }

    .services-page-hero-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 2rem;
        position: relative;
        z-index: 1;
    }

    .services-breadcrumb {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        margin-bottom: 2rem;
        font-size: 0.9rem;
        background: rgba(255, 255, 255, 0.1);
        padding: 0.5rem 1rem;
        backdrop-filter: blur(10px);
    }

    .services-breadcrumb a {
        color: rgba(255, 255, 255, 0.9);
        text-decoration: none;
        transition: all 0.3s ease;
    }

    .services-breadcrumb a:hover {
        color: #ffffff;
    }

    .services-breadcrumb i {
        font-size: 0.7rem;
        color: rgba(255, 255, 255, 0.6);
    }

    .services-breadcrumb span {
        color: #ffffff;
        font-weight: 500;
    }

    .services-page-hero-title {
        font-size: 3rem;
        font-weight: 700;
        margin-bottom: 1rem;
        color: #ffffff;
        line-height: 1.2;
    }

    .services-page-hero-description {
        font-size: 1.15rem;
        max-width: 700px;
        color: rgba(255, 255, 255, 0.95);
        line-height: 1.7;
        margin: 0;
    }

    /* Main Services Section */
    .services-main-section {
        padding: 5rem 0;
        background: #ffffff;
    }

    .services-main-container {
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 2rem;
    }

    .services-main-header {
        text-align: center;
        max-width: 800px;
        margin: 0 auto 4rem;
    }

    .services-section-subtitle {
        display: flex;
        align-items: center;
        gap: 1rem;
        margin-bottom: 1.5rem;
        justify-content: center;
    }

    .services-subtitle-line {
        width: 50px;
        height: 2px;
        background: #1E73BE;
    }

    .services-section-subtitle span {
        font-size: 0.875rem;
        font-weight: 600;
        color: #1E73BE;
        text-transform: uppercase;
        letter-spacing: 2px;
    }

    .services-section-title {
        font-size: 2.2rem;
        font-weight: 700;
        color: #000000;
        line-height: 1.3;
        margin-bottom: 1rem;
    }

    .services-section-description {
        font-size: 1.05rem;
        color: #666666;
        line-height: 1.7;
    }

    /* Services Grid */
    .services-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }

    .service-card {
        background: #ffffff;
        padding: 2.5rem;
        border: 1px solid #e8e8e8;
        transition: all 0.3s ease;
        position: relative;
    }

    .service-number {
        position: absolute;
        top: 20px;
        right: 20px;
        font-size: 2.5rem;
        font-weight: 700;
        color: #f0f0f0;
        line-height: 1;
    }

    .service-icon {
        width: 70px;
        height: 70px;
        background: #1E73BE;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 1.5rem;
    }

    .service-icon i {
        font-size: 1.8rem;
        color: #ffffff;
    }

    .service-card h3 {
        font-size: 1.4rem;
        font-weight: 700;
        color: #000000;
        margin-bottom: 1rem;
    }

    .service-card > p {
        font-size: 0.95rem;
        color: #666666;
        line-height: 1.6;
        margin-bottom: 1.5rem;
    }

    .service-features {
        list-style: none;
        margin: 0 0 1.5rem 0;
        padding: 0;
    }

    .service-features li {
        font-size: 0.9rem;
        color: #666666;
        padding: 0.5rem 0;
        display: flex;
        align-items: center;
        gap: 0.75rem;
    }

    .service-features li i {
        color: #1E73BE;
        font-size: 0.85rem;
    }

    .service-link {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        color: #1E73BE;
        text-decoration: none;
        font-weight: 600;
        font-size: 0.95rem;
        transition: all 0.3s ease;
    }

    .service-link:hover {
        gap: 0.75rem;
    }

    .service-link i {
        font-size: 0.85rem;
    }

    /* Location Section */
    .services-location-section {
        padding: 5rem 0;
        background: #f8f9fa;
    }

    .services-location-container {
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 2rem;
    }

    .services-location-header {
        text-align: center;
        max-width: 800px;
        margin: 0 auto 4rem;
    }

    .location-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }

    .location-item {
        background: #ffffff;
        padding: 2rem;
        border-left: 3px solid #1E73BE;
        text-align: center;
    }

    .location-item i {
        font-size: 2rem;
        color: #1E73BE;
        margin-bottom: 1rem;
    }

    .location-item h4 {
        font-size: 1.2rem;
        font-weight: 700;
        color: #000000;
        margin-bottom: 0.75rem;
    }

    .location-item p {
        font-size: 0.9rem;
        color: #666666;
        line-height: 1.6;
        margin: 0;
    }

    /* Process Section */
    .services-process-section {
        padding: 5rem 0;
        background: #f8f9fa;
    }

    .services-process-container {
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 2rem;
    }

    .services-process-header {
        text-align: center;
        margin-bottom: 4rem;
    }

    .process-steps {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
    }

    .process-step {
        background: #ffffff;
        padding: 2rem;
        text-align: center;
        position: relative;
        border-left: 3px solid #1E73BE;
    }

    .step-number {
        position: absolute;
        top: -15px;
        right: 20px;
        font-size: 3rem;
        font-weight: 700;
        color: #f0f0f0;
        line-height: 1;
    }

    .step-icon {
        width: 60px;
        height: 60px;
        background: #1E73BE;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 1.5rem;
    }

    .step-icon i {
        font-size: 1.5rem;
        color: #ffffff;
    }

    .process-step h3 {
        font-size: 1.2rem;
        font-weight: 700;
        color: #000000;
        margin-bottom: 0.75rem;
    }

    .process-step p {
        font-size: 0.9rem;
        color: #666666;
        line-height: 1.6;
        margin: 0;
    }

    /* Benefits Section */
    .services-benefits-section {
        padding: 5rem 0;
        background: linear-gradient(135deg, #1E73BE 0%, #155a94 100%);
        color: #ffffff;
    }

    .services-benefits-container {
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 2rem;
    }

    .services-benefits-container h2 {
        font-size: 2.2rem;
        font-weight: 700;
        text-align: center;
        margin-bottom: 3rem;
    }

    .benefits-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 2.5rem;
    }

    .benefit-item {
        text-align: center;
    }

    .benefit-item i {
        font-size: 2.5rem;
        margin-bottom: 1rem;
        opacity: 0.9;
    }

    .benefit-item h4 {
        font-size: 1.2rem;
        font-weight: 700;
        margin-bottom: 0.75rem;
    }

    .benefit-item p {
        font-size: 0.95rem;
        opacity: 0.9;
        line-height: 1.6;
        margin: 0;
    }

    /* FAQ Section */
    .services-faq-section {
        padding: 5rem 0;
        background: #f8f9fa;
    }

    .services-faq-container {
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 2rem;
    }

    .services-faq-header {
        text-align: center;
        max-width: 800px;
        margin: 0 auto 4rem;
    }

    .services-faq-list {
        max-width: 900px;
        margin: 0 auto;
    }

    .services-faq-item {
        background: #ffffff;
        margin-bottom: 1rem;
        border: 1px solid #e8e8e8;
    }

    .services-faq-question {
        padding: 1.5rem 2rem;
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
        transition: all 0.3s ease;
    }

    .services-faq-question:hover {
        background: #f8f9fa;
    }

    .services-faq-question h4 {
        font-size: 1.1rem;
        font-weight: 600;
        color: #000000;
        margin: 0;
    }

    .services-faq-question i {
        color: #1E73BE;
        transition: transform 0.3s ease;
    }

    .services-faq-answer {
        padding: 0 2rem 1.5rem;
        display: none;
    }

    .services-faq-answer p {
        font-size: 0.95rem;
        color: #666666;
        line-height: 1.7;
        margin: 0;
    }

    .services-faq-item.active .services-faq-answer {
        display: block;
    }

    .services-faq-item.active .services-faq-question i {
        transform: rotate(180deg);
    }

    /* CTA Section */
    .services-cta-section {
        padding: 5rem 0;
        background: #ffffff;
    }

    .services-cta-container {
        max-width: 800px;
        margin: 0 auto;
        padding: 0 2rem;
        text-align: center;
    }

    .services-cta-container h2 {
        font-size: 2rem;
        font-weight: 700;
        color: #000000;
        margin-bottom: 1rem;
    }

    .services-cta-container p {
        font-size: 1.1rem;
        color: #666666;
        margin-bottom: 2rem;
    }

    .services-cta-buttons {
        display: flex;
        gap: 1rem;
        justify-content: center;
        flex-wrap: wrap;
    }

    .services-btn-cta-primary,
    .services-btn-cta-secondary {
        display: inline-flex;
        align-items: center;
        gap: 0.75rem;
        padding: 1rem 2rem;
        font-weight: 600;
        font-size: 1rem;
        text-decoration: none;
        transition: all 0.3s ease;
        border-radius: 0;
    }

    .services-btn-cta-primary {
        background: #1E73BE;
        color: #ffffff;
        border: 2px solid #1E73BE;
    }

    .services-btn-cta-primary:hover {
        background: #155a94;
        border-color: #155a94;
    }

    .services-btn-cta-secondary {
        background: transparent;
        color: #1E73BE;
        border: 2px solid #1E73BE;
    }

    .services-btn-cta-secondary:hover {
        background: #f0f7ff;
    }

    /* Responsive */
    @media screen and (max-width: 1200px) {
        .services-grid {
            grid-template-columns: 1fr;
        }

        .location-grid {
            grid-template-columns: 1fr;
        }

        .benefits-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    @media screen and (max-width: 968px) {
        .services-page-hero {
            padding: 9rem 0 2rem;
        }

        .services-page-hero-title {
            font-size: 2.5rem;
        }

        .services-grid {
            grid-template-columns: 1fr;
        }

        .process-steps {
            grid-template-columns: repeat(2, 1fr);
        }

        .benefits-grid {
            grid-template-columns: 1fr;
            gap: 2rem;
        }

        .services-cta-buttons {
            flex-direction: column;
        }

        .services-btn-cta-primary,
        .services-btn-cta-secondary {
            width: 100%;
            justify-content: center;
        }
    }

    @media screen and (max-width: 768px) {
        .services-page-hero {
            padding: 7rem 0 1.5rem;
        }

        .services-page-hero-title {
            font-size: 2rem;
        }

        .services-section-title {
            font-size: 1.8rem;
        }

        .process-steps {
            grid-template-columns: 1fr;
        }
    }

    @media screen and (max-width: 480px) {
        .services-page-hero-title {
            font-size: 1.75rem;
        }

        .services-section-title {
            font-size: 1.5rem;
        }
    }