 /* Process Section */
    .process-section {
        padding: 5rem 0;
        background: #f8f9fa;
    }

    .process-container {
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 2rem;
    }

    /* Section Header */
    .process-header {
        text-align: center;
        max-width: 800px;
        margin: 0 auto 3rem;
    }

    .section-subtitle {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 1rem;
        margin-bottom: 1.5rem;
    }

    .subtitle-line {
        width: 50px;
        height: 2px;
        background: #1E73BE;
    }

    .section-subtitle span {
        font-size: 0.875rem;
        font-weight: 600;
        color: #1E73BE;
        text-transform: uppercase;
        letter-spacing: 2px;
    }

    .section-title {
        font-size: 2.2rem;
        font-weight: 700;
        color: #000000;
        line-height: 1.3;
        margin: 0 0 1rem 0;
    }

    .section-description {
        font-size: 0.95rem;
        color: #666666;
        line-height: 1.7;
        margin: 0;
    }

    /* Process Steps */
    .process-steps {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        margin-bottom: 3rem;
    }

    /* Single Step */
    .process-step {
        background: #ffffff;
        padding: 2rem;
        position: relative;
        border-left: 4px solid #1E73BE;
        transition: all 0.3s ease;
    }

    .process-step:hover {
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    }

    .step-number {
        position: absolute;
        top: 1.5rem;
        right: 1.5rem;
        font-size: 3rem;
        font-weight: 700;
        color: #f0f0f0;
        line-height: 1;
    }

    .step-content {
        position: relative;
        z-index: 1;
    }

    .step-icon {
        width: 50px;
        height: 50px;
        background: #1E73BE;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 1.2rem;
    }

    .step-icon i {
        font-size: 1.3rem;
        color: #ffffff;
    }

    .step-title {
        font-size: 1.2rem;
        font-weight: 700;
        color: #000000;
        margin-bottom: 0.8rem;
    }

    .step-description {
        font-size: 0.9rem;
        color: #666666;
        line-height: 1.6;
        margin-bottom: 1.2rem;
    }

    .step-list {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .step-list li {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        padding: 0.4rem 0;
        font-size: 0.875rem;
        color: #333333;
    }

    .step-list i {
        color: #1E73BE;
        font-size: 0.8rem;
    }

    /* CTA Box */
    .process-cta {
        background: linear-gradient(135deg, #1E73BE 0%, #155a94 100%);
        padding: 2.5rem;
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 2rem;
    }

    .cta-content {
        flex: 1;
    }

    .cta-content h3 {
        font-size: 1.6rem;
        font-weight: 700;
        color: #ffffff;
        margin: 0 0 0.5rem 0;
    }

    .cta-content p {
        font-size: 0.95rem;
        color: rgba(255, 255, 255, 0.9);
        margin: 0;
    }

    .cta-buttons {
        display: flex;
        gap: 1rem;
        flex-wrap: wrap;
    }

    .btn-cta-primary,
    .btn-cta-secondary {
        display: inline-flex;
        align-items: center;
        gap: 0.75rem;
        padding: 0.9rem 1.8rem;
        font-weight: 600;
        font-size: 0.95rem;
        text-decoration: none;
        transition: all 0.3s ease;
        border-radius: 0;
        white-space: nowrap;
    }

    .btn-cta-primary {
        background: #ffffff;
        color: #1E73BE;
        border: 2px solid #ffffff;
    }

    .btn-cta-primary:hover {
        background: #f8f9fa;
    }

    .btn-cta-secondary {
        background: transparent;
        color: #ffffff;
        border: 2px solid #ffffff;
    }

    .btn-cta-secondary:hover {
        background: rgba(255, 255, 255, 0.1);
    }

    /* Responsive Design */
    @media screen and (max-width: 1200px) {
        .process-steps {
            grid-template-columns: 1fr;
            gap: 2rem;
        }
    }

    @media screen and (max-width: 968px) {
        .process-section {
            padding: 3.5rem 0;
        }

        .section-title {
            font-size: 1.8rem;
        }

        .process-step {
            padding: 1.8rem;
        }

        .step-number {
            font-size: 2.5rem;
            top: 1.2rem;
            right: 1.2rem;
        }

        .process-cta {
            flex-direction: column;
            text-align: center;
        }

        .cta-buttons {
            width: 100%;
            justify-content: center;
        }
    }

    @media screen and (max-width: 768px) {
        .process-container {
            padding: 0 1.5rem;
        }

        .section-title {
            font-size: 1.75rem;
        }

        .process-cta {
            padding: 2rem;
        }

        .cta-content h3 {
            font-size: 1.5rem;
        }

        .cta-buttons {
            flex-direction: column;
        }

        .btn-cta-primary,
        .btn-cta-secondary {
            width: 100%;
            justify-content: center;
        }
    }

    @media screen and (max-width: 480px) {
        .section-title {
            font-size: 1.5rem;
        }

        .step-title {
            font-size: 1.25rem;
        }

        .step-description {
            font-size: 0.95rem;
        }

        .step-number {
            font-size: 2.5rem;
        }
    }