/* How It Works Section */
.how-it-works {
    background: linear-gradient(135deg, #ffffff 0%, #f0f9fa 100%);
    padding: 70px 0;
}

.how-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.how-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    color: #0b6578;
    margin-bottom: 15px;
}

.how-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #4496a6;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.steps-wrapper {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.step-card {
    background: white;
    border-radius: 20px;
    padding: 30px 20px;
    width: 320px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(109, 189, 200, 0.15);
    transition: all 0.4s ease;
    position: relative;
    border: 3px solid #e0f7fa;
}

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 45px rgba(109, 189, 200, 0.3);
    border-color: #6dbdc8;
}

.step-number {
    position: absolute;
    top: -20px;
    right: 50%;
    transform: translateX(50%);
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #6dbdc8 0%, #5aacb7 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 800;
    box-shadow: 0 5px 20px rgba(109, 189, 200, 0.4);
}

.step-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 15px;
    margin: 15px 0 20px 0;
}

.step-card h3 {
    font-size: 1.5rem;
    color: #224056;
    margin-bottom: 12px;
    font-weight: 700;
}

.step-card p {
    font-size: 1.05rem;
    color: #4496a6;
    line-height: 1.7;
}

.how-result {
    background: linear-gradient(135deg, #6dbdc8 0%, #5aacb7 100%);
    border-radius: 20px;
    padding: 35px 40px;
    display: flex;
    align-items: center;
    gap: 25px;
    box-shadow: 0 10px 35px rgba(109, 189, 200, 0.3);
    max-width: 800px;
    margin: 0 auto;
}

.result-icon {
    font-size: 4rem;
    color: white;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.result-text h3 {
    color: white;
    font-size: 1.6rem;
    margin-bottom: 8px;
    font-weight: 700;
}

.result-text p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.1rem;
    margin: 0;
}

/* Responsive */
@media (max-width: 1000px) {
    .steps-wrapper {
        gap: 20px;
    }
    
    .step-card {
        width: 280px;
    }
}

@media (max-width: 768px) {
    .how-title {
        font-size: 2rem;
    }
    
    .how-subtitle {
        font-size: 1.05rem;
    }
    
    .steps-wrapper {
        flex-direction: column;
        align-items: center;
    }
    
    .step-card {
        width: 90%;
        max-width: 350px;
    }
    
    .how-result {
        flex-direction: column;
        text-align: center;
        padding: 30px 25px;
    }
    
    .result-icon {
        width: 70px;
        height: 70px;
        font-size: 3rem;
    }
}

@media (max-width: 480px) {
    .step-card {
        padding: 25px 15px;
    }
    
    .step-card img {
        height: 150px;
    }
}
