/* Process Page Specific Styles */

.process-intro {
    text-align: center;
    padding: 3em 0 1em 0;
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
}

.intro-text {
    font-size: 1.2em;
    color: #666;
    margin-top: 1em;
}

/* How it Works Section */
.how-it-works {
    background-color: #fafafa;
    padding: 0;
    text-align: center;
}

.steps-container {
    display: flex;
    flex-direction: column;
    gap: 2em;
    max-width: 900px;
    width: 100%;
    margin: 0 auto 2em auto;
}

.step {
    background: white;
    padding: 2.5em;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    align-items: flex-start;
    gap: 2em;
    text-align: left;
}

.step:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.step-icon {
    font-size: 3.5em;
    flex-shrink: 0;
    line-height: 1;
}

.step-number {
    display: inline-block;
    background-color: #69a03d;
    color: white;
    width: 2.5em;
    height: 2.5em;
    line-height: 2.5em;
    border-radius: 50%;
    font-weight: bold;
    font-size: 1.2em;
    flex-shrink: 0;
    text-align: center;
}

.step-content {
    flex-grow: 1;
}

.step h3 {
    font-size: 1.5em;
    margin: 0 0 0.5em 0;
    color: #333;
}

.step p {
    color: #666;
    margin: 0;
    font-size: 1.05em;
    line-height: 1.6;
}

.process-cta {
    text-align: center;
    padding: 4em 0;
}

.process-cta h2 {
    font-size: 2em;
    margin-bottom: 1.5em;
    color: #333;
}

/* Responsive Design */
@media (max-width: 768px) {
    .process-intro {
        padding: 2em 0;
    }

    .process-cta {
        padding: 3em 0;
    }

    .process-cta h2 {
        font-size: 1.5em;
    }

    .step {
        flex-direction: column;
        gap: 1em;
        padding: 2em;
        text-align: center;
        align-items: center;
    }

    .step:hover {
        transform: translateY(-5px);
    }

    .step-icon {
        font-size: 3em;
    }

    .step-number {
        width: 2em;
        height: 2em;
        line-height: 2em;
        font-size: 1em;
    }

    .step-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}
