/* Direct Answer / Featured Snippet Box */
.direct-answer {
    background-color: #f0f7ff;
    border-left: 5px solid #023047;
    padding: 18px 24px;
    margin-bottom: 30px;
    font-size: 1.1rem;
    font-weight: 500;
    color: #1a1a1a;
    border-radius: 0 8px 8px 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.hr-direct-billing p {
    font-family: var(--font-02);
}

.hr-direct-billing ul, .hr-direct-billing ol {
    margin-bottom: 20px;
    padding-left: 25px;
    font-family: var(--font-02);
}

.hr-direct-billing li {
    margin-bottom: 10px;
    font-family: var(--font-02);
}

/* Styled ordered list for steps */
.hr-direct-billing ol.steps-list {
    counter-reset: steps-counter;
    list-style: none;
    padding-left: 0;
}

.hr-direct-billing ol.steps-list > li {
    position: relative;
    padding-left: 40px;
    margin-bottom: 20px;
}

.hr-direct-billing ol.steps-list > li::before {
    content: counter(steps-counter);
    counter-increment: steps-counter;
    position: absolute;
    left: 0;
    top: 2px;
    background-color: #0056b3;
    color: white;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.9rem;
}

/* Contact Box */
.contact-box {
    background-color: #f8f9fa;
    border: 2px solid #e9ecef;
    padding: 25px;
    border-radius: 12px;
    margin-top: 40px;
}

.contact-box h2 {
    margin-top: 0;
    border-bottom: none;
}

.contact-details {
    list-style: none;
    padding: 0;
}

.contact-details li {
    margin-bottom: 12px;
    font-size: 1.05rem;
}
.contact-details li i{
    color: var(--color-4)
}