#howitworks {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 40px 20px;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    min-height: 400px;
}

.solution-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.solution-title {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 3rem;
    font-weight: 600;
}

.steps-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.step-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    max-width: 250px;
    width: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #3498db;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.1rem;
}

.step-icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2.5rem;
    color: white;
}

.step-1 .step-icon {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.step-2 .step-icon {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.step-3 .step-icon {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.step-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.step-description {
    font-size: 1rem;
    color: #7f8c8d;
    line-height: 1.5;
}

.arrow-connector {
    display: flex;
    align-items: center;
    color: #bdc3c7;
    font-size: 2rem;
    margin: 0 1rem;
}

.arrow-connector span {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

@media (max-width: 768px) {
    .steps-container {
        flex-direction: column;
        gap: 3rem;
    }
    
    .arrow-connector {
        transform: rotate(90deg);
        margin: 1rem 0;
    }
    
    .solution-title {
        font-size: 2rem;
    }
}