.how-it-works-page {
    background: #f8f9fa;
    min-height: 100vh;
}

.hiw-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.hiw-hero {
    background: linear-gradient(135deg, #1a365d 0%, #2d4a77 100%);
    color: #fff;
    padding: 80px 0;
    text-align: center;
}

.hiw-hero h1 {
    font-size: 42px;
    font-weight: 700;
    margin: 0 0 16px;
}

.hiw-hero-subtitle {
    font-size: 18px;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* Steps Section */
.hiw-steps {
    padding: 80px 0;
    background: #fff;
}

.hiw-steps h2 {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    margin: 0 0 50px;
    color: #1a1a1a;
}

.hiw-steps-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.hiw-step {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    background: #f8f9fa;
    border-radius: 16px;
    padding: 40px;
    position: relative;
}

.hiw-step:nth-child(even) {
    flex-direction: row-reverse;
}

.hiw-step-number {
    position: absolute;
    top: -15px;
    left: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}

.hiw-step:nth-child(even) .hiw-step-number {
    left: auto;
    right: 30px;
}

.hiw-step-content {
    flex: 1;
}

.hiw-step-content h3 {
    font-size: 24px;
    font-weight: 600;
    margin: 0 0 12px;
    color: #1a1a1a;
}

.hiw-step-content p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
    margin: 0 0 16px;
}

.hiw-step-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}

.hiw-step-list li {
    padding: 8px 0 8px 28px;
    position: relative;
    font-size: 15px;
    color: #444;
}

.hiw-step-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: 700;
}

.hiw-step-icon {
    width: 120px;
    height: 120px;
    background: #fff;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #007bff;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.hiw-btn {
    display: inline-block;
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    color: #fff;
    padding: 12px 28px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
}

.hiw-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
    text-decoration: none;
    color: #fff;
}

/* Benefits Section */
.hiw-benefits {
    padding: 80px 0;
    background: #f8f9fa;
}

.hiw-benefits h2 {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    margin: 0 0 50px;
    color: #1a1a1a;
}

.hiw-benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.hiw-benefit {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s, box-shadow 0.2s;
}

.hiw-benefit:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.hiw-benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #007bff;
}

.hiw-benefit h4 {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 10px;
    color: #1a1a1a;
}

.hiw-benefit p {
    font-size: 14px;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

/* FAQ Section */
.hiw-faq {
    padding: 80px 0;
    background: #fff;
}

.hiw-faq h2 {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    margin: 0 0 50px;
    color: #1a1a1a;
}

.hiw-faq-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.hiw-faq-item {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 25px;
}

.hiw-faq-item h4 {
    font-size: 17px;
    font-weight: 600;
    margin: 0 0 12px;
    color: #1a1a1a;
}

.hiw-faq-item p {
    font-size: 15px;
    color: #555;
    margin: 0;
    line-height: 1.6;
}

/* CTA Section */
.hiw-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    text-align: center;
    color: #fff;
}

.hiw-cta h2 {
    font-size: 32px;
    font-weight: 700;
    margin: 0 0 12px;
}

.hiw-cta p {
    font-size: 18px;
    opacity: 0.9;
    margin: 0 0 30px;
}

.hiw-cta-btn {
    display: inline-block;
    background: #fff;
    color: #28a745;
    padding: 16px 40px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
}

.hiw-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    color: #28a745;
}

/* Responsive */
@media (max-width: 992px) {
    .hiw-benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hiw-faq-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hiw-hero {
        padding: 60px 0;
    }
    
    .hiw-hero h1 {
        font-size: 28px;
    }
    
    .hiw-hero-subtitle {
        font-size: 16px;
    }
    
    .hiw-steps,
    .hiw-benefits,
    .hiw-faq,
    .hiw-cta {
        padding: 50px 0;
    }
    
    .hiw-steps h2,
    .hiw-benefits h2,
    .hiw-faq h2,
    .hiw-cta h2 {
        font-size: 24px;
        margin-bottom: 30px;
    }
    
    .hiw-step {
        flex-direction: column !important;
        padding: 30px 20px;
        padding-top: 50px;
    }
    
    .hiw-step-number {
        left: 20px !important;
        right: auto !important;
    }
    
    .hiw-step-icon {
        display: none;
    }
    
    .hiw-step-content h3 {
        font-size: 20px;
    }
    
    .hiw-benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .hiw-benefit {
        padding: 25px 20px;
    }
}
