/* Three Steps Responsive Styles */
@media (max-width: 1024px) {
    .steps-container {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }
    
    .step-card {
        width: 100%;
        max-width: 400px;
        height: auto;
        min-height: 250px;
    }
}

@media (max-width: 768px) {
    .three-steps-section {
        padding: 3rem 1rem;
    }
    
    .step-card {
        max-width: 350px;
        min-height: 220px;
    }
    
    .step-content {
        padding: 2rem 1.5rem;
    }
    
    .step-title {
        font-size: 1.3rem;
    }
    
    .step-description {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .three-steps-section {
        padding: 2rem 0.5rem;
    }
    
    .step-card {
        max-width: 300px;
        min-height: 200px;
    }
    
    .step-content {
        padding: 1.5rem 1rem;
    }
    
    .step-title {
        font-size: 1.2rem;
    }
    
    .step-description {
        font-size: 0.85rem;
    }
}
