﻿.rns-hw-section {
    padding: 4rem 1rem 5rem;
    background: #ffffff;
}

.rns-hw-container {
    max-width: 1200px;
    margin: 0 auto;
}

.rns-hw-header {
    text-align: center;
    margin-bottom: 4rem;
}

.rns-hw-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 1rem;
}

.rns-hw-subtitle {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.125rem;
    color: #64748b;
}

.rns-hw-steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

@media (min-width: 768px) {
    .rns-hw-steps {
        grid-template-columns: repeat(3, 1fr);
    }
}

.rns-hw-step {
    text-align: center;
    padding: 1rem;
}

.rns-hw-step-icon-container{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1px
}

.rns-hw-icon-wrapper {
    width: 80px;
    height: 80px;
    background: rgba(37, 99, 235, 0.1);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    position: relative;
}

.rns-hw-icon {
    width: 40px;
    height: 40px;
    color: #2563eb;
}

.rns-hw-step-number {
    width: 32px;
    height: 32px;
    margin-top: 15px;
    background: #2563eb;
    color: #ffffff;
    font-weight: 600;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: -20px;
    left: -5px;
}

.rns-hw-step-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 0.5rem;
    min-height: 3.5rem;
}

.rns-hw-step-description {
    font-size: 1rem;
    color: #64748b;
    line-height: 1.6;
}
