.how-hero,
.how-step-card,
.how-cta-box {
    text-align: center;
}

.how-hero,
.how-nav-tabs .nav-link.active,
.how-step-number {
    color: #ffffff;
}

.how-hero h1,
.how-step-number,
.how-step-title {
    font-weight: 800;
}

.how-step-card,
.how-cta-box {
    border: 1px solid #E5E7EB;
}

.how-nav-tabs,
.how-step-number {
    justify-content: center;
}

.how-hero {
    background-image: linear-gradient(135deg, #1E3A8A 0%, #3B82F6 100%);
    padding: 100px 0 80px;
    border-radius: 0 0 40px 40px;
    margin-bottom: 60px;
}

.how-hero h1 {
    font-size: 48px;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.how-hero p {
    font-size: 20px;
    color: #E0E7FF;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.how-nav-tabs {
    border-bottom: none;
    gap: 16px;
    margin-bottom: 60px;
}

.how-nav-tabs .nav-link {
    border: 2px solid #E5E7EB;
    border-radius: 50px;
    color: #4B5563;
    font-weight: 700;
    padding: 12px 32px;
    font-size: 18px;
    transition: all 0.3s ease;
    background-color: transparent;
}

.how-nav-tabs .nav-link:hover {
    border-color: #D1D5DB;
    color: #111827;
}

.how-nav-tabs .nav-link.active {
    background-color: #2563EB;
    border-color: #2563EB;
}

.how-step-card {
    background-color: #ffffff;
    border-radius: 20px;
    padding: 40px 30px;
    height: 100%;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-top: 24px;
}

.how-step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.how-step-number {
    position: absolute;
    top: -24px;
    left: 50%;
    transform: translateX(-50%);
    width: 48px;
    height: 48px;
    background-color: #111827;
    border-radius: 50%;
    display: flex;
    align-items: center;
    font-size: 20px;
    border: 4px solid #ffffff;
}

.how-step-icon {
    font-size: 48px;
    color: #2563EB;
    margin-bottom: 20px;
    margin-top: 16px;
    display: block;
}

.how-step-title {
    font-size: 20px;
    color: #111827;
    margin-bottom: 16px;
}

.how-step-text {
    color: #6B7280;
    line-height: 1.6;
    margin: 0;
}

.how-cta-box {
    background-color: #F9FAFB;
    border-radius: 24px;
    padding: 60px 40px;
    margin: 80px auto;
    max-width: 900px;
}