:root {
    --primary-color: #62146c;
    --primary-light: #7a1d87;
    --primary-dark: #4a0f52;
}

.how-it-works-section {
    padding: 80px 0;
}

.section-title {
    font-size: 48px;
    font-weight: 800;
    color: #212529;
    margin-bottom: 8px;
}

.section-subtitle {
    color: var(--primary-color);
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
}

.section-description {
    font-size: 18px;
    color: #495057;
    line-height: 1.8;
    max-width: 800px;
    margin-bottom: 60px;
}

.section-description strong {
    color: #212529;
    font-weight: 700;
}

.step-card {
    background: #fff;
    border-radius: 24px;
    padding: 48px 32px;
    height: 100%;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-light) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.step-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(98, 20, 108, 0.15);
}

.step-card:hover::before {
    opacity: 1;
}

.step-number {
    width: 64px;
    height: 64px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.step-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 24px;
    position: relative;
}

.step-icon svg {
    width: 100%;
    height: 100%;
}

.step-title {
    font-size: 24px;
    font-weight: 700;
    color: #212529;
    margin-bottom: 16px;
}

.step-description {
    font-size: 15px;
    color: #6c757d;
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 991px) {
    .section-title {
        font-size: 36px;
    }
    
    .how-it-works-section {
        padding: 60px 30px;
    }
    
    .step-card {
        margin-bottom: 24px;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 28px;
    }
    
    .section-description {
        font-size: 16px;
    }
}