.process-section {
    background-color: var(--bg-tertiary);
    padding: 5rem 2rem;
    transition: background-color 0.3s ease;
}

.process-container {
    max-width: 1400px;
    margin: 0 auto;
}

.process-title {
    text-align: center;
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 4rem;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    align-items: start;
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.process-number-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: rgba(245, 169, 98, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.process-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #f5a962;
}

.process-step-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.process-step-description {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
}

@media (max-width: 768px) {
    .process-section {
        padding: 4rem 1.5rem;
    }

    .process-title {
        font-size: 2.5rem;
        margin-bottom: 3rem;
    }

    .process-steps {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .process-number-circle {
        width: 70px;
        height: 70px;
    }

    .process-number {
        font-size: 2rem;
    }

    .process-step-title {
        font-size: 1.25rem;
    }

    .process-step-description {
        font-size: 0.9375rem;
    }
}

@media (max-width: 480px) {
    .process-title {
        font-size: 2rem;
    }
}
