/* Process page specific styles */

.process-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    margin: 3rem 0;
}

.process-step {
    padding: 2rem;
    display: flex;
    gap: 1.5rem;
}

.step-number {
    width: 3rem;
    height: 3rem;
    background: var(--process-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.step-content p {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.benefit-list {
    margin-top: 1rem;
}

.benefit-list li {
    font-size: 0.95rem;
}

.delivery-section {
    padding: 3rem;
    margin-top: 4rem;
}

.delivery-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    margin-top: 2rem;
}

.delivery-card {
    padding: 1.5rem;
    background: var(--light-bg);
    border-radius: 0.75rem;
    border-left: 4px solid var(--process-color);
}

.delivery-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--text-color);
}

.delivery-card p {
    color: var(--secondary-color);
    font-size: 0.95rem;
}

/* For the elements with inline styles */
.margin-bottom-2 {
    margin-bottom: 2rem;
}

.max-width-600 {
    max-width: 600px;
    margin: 0 auto 3rem;
}

@media (max-width: 768px) {
    .process-step {
        padding: 1.5rem;
    }

    .delivery-section {
        padding: 2rem 1rem;
    }

    .step-number {
        width: 2.5rem;
        height: 2.5rem;
        font-size: 1rem;
    }
}
