.hero {
    height: 600px;
    background: url('../imgs/hwwsection.png') center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.4);
    z-index: 1;
}

.hero h1 {
    position: relative;
    color: #fff;
    font-size: 48px;
    font-weight: 700;
    z-index: 2;
}

.section {
    padding: 80px 0;
    background: #f8f9fb;
}

.process-tabs {
    display: flex;
    border-radius: 10px 10px 0 0;
    overflow: hidden;
    background: #fff;
}

.tab-btn {
    flex: 1;
    padding: 20px;
    border: none;
    background: #e2e4e7;
    cursor: pointer;
    transition: 0.3s;
    font-weight: 600;
    border-right: 1px solid #ccced3;
    color: #334155;
}

.tab-btn:hover {
    background: #e2e8f0;
}

.tab-btn.active {
    background: #0d6efd;
    color: #fff;
}

.tab-btn:last-child {
    border-right: none;
}

.tab-content-box {
    background: #fff;
    padding: 50px;
    border-radius: 0 0 10px 10px;
}

.tab-pane-custom {
    display: none;
    animation: fadeIn 0.3s ease;
}

.tab-pane-custom.active {
    display: block;
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #0d6efd;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    font-weight: 600;
}

.step-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
}

.step-text {
    color: #555;
    line-height: 1.8;
    font-size: 16px;
}

.step-list {
    margin-top: 15px;
    padding-left: 18px;
}

.step-list li {
    margin-bottom: 8px;
    color: #444;
}

.step-img img {
    width: 100%;
    border-radius: 12px;
}

@keyframes fadeIn {
    from {opacity: 0; transform: translateY(5px);}
    to {opacity: 1; transform: translateY(0);}
}

