/* Process Cards Styles */
.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 50px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.process-card {
    background: #FFFFFF;
    border-radius: 15px;
    padding: 35px 25px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    min-height: 280px;
}

.process-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.step-circle {
    width: 70px;
    height: 70px;
    background-color: #6b4e2f;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    color: white;
    font-size: 2rem;
    font-family: 'Playfair Display', serif;
    font-weight: 500;
    box-shadow: 0 4px 10px rgba(107, 78, 47, 0.3);
    flex-shrink: 0;
}

.step-content {
    width: 100%;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.step-content h3 {
    color: var(--primary-color, #6b4e2f);
    margin-bottom: 12px;
    font-size: 1.3rem;
    font-family: 'Playfair Display', serif;
    line-height: 1.3;
    text-align: center;
}

.step-content p {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
    text-align: center;
    max-width: 200px;
}

/* Responsive Adjustments */
@media screen and (max-width: 1024px) {
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .process-card {
        padding: 30px 20px;
        min-height: 260px;
    }
}

@media screen and (max-width: 768px) {
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .process-card {
        padding: 25px 15px;
        min-height: 240px;
    }
    
    .step-circle {
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
        margin-bottom: 15px;
    }
    
    .step-content h3 {
        font-size: 1.2rem;
        margin-bottom: 10px;
    }
    
    .step-content p {
        font-size: 0.9rem;
    }
}

@media screen and (max-width: 480px) {
    .process-steps {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 280px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .process-card {
        min-height: auto;
        padding: 25px 20px;
    }
}