/* --- Hero Section --- */
.finance-hero-text {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    max-width: 900px;
    margin: 0 auto;
}

/* --- Service Cards (Grid) --- */
.finance-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 5px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    border-top: 4px solid transparent;
    position: relative;
    overflow: hidden;
}

.finance-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-top-color: #9E9270;
}

.finance-icon {
    font-size: 35px;
    color: #9E9270;
    margin-bottom: 25px;
    display: inline-block;
    background: #f9f9f9;
    width: 70px;
    height: 70px;
    line-height: 70px;
    text-align: center;
    border-radius: 50%;
}

.finance-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #071c1f;
}

.finance-card p {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 15px;
}

.finance-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.finance-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
    font-size: 14px;
    color: #555;
    font-weight: 500;
}

.finance-list li::before {
    content: '•';
    color: #9E9270;
    position: absolute;
    left: 0;
    font-size: 20px;
    line-height: 18px;
}

/* --- Process Section --- */
.process-section {
    background-color: #071c1f;
    /* Dark background for contrast */
    padding: 80px 0;
    color: #fff;
}

.process-item {
    text-align: center;
    padding: 20px;
    position: relative;
}

/* Arrow between items (desktop only) */
@media (min-width: 992px) {
    .process-item:not(:last-child)::after {
        content: '\f061';
        /* FontAwesome Arrow Right */
        font-family: "Font Awesome 5 Free";
        font-weight: 900;
        position: absolute;
        top: 30%;
        right: -10px;
        color: #9E9270;
        font-size: 20px;
        opacity: 0.5;
    }
}

.process-icon {
    font-size: 30px;
    color: #fff;
    margin-bottom: 20px;
    border: 2px solid #9E9270;
    width: 60px;
    height: 60px;
    line-height: 56px;
    border-radius: 50%;
    display: inline-block;
}

.process-title {
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* --- Quote / Outro Section --- */
.finance-outro-box {
    background: #f8f9fa;
    border-left: 5px solid #9E9270;
    padding: 50px;
    margin-top: 60px;
}

.risk-box h4 {
    color: #071c1f;
    font-weight: 700;
    margin-bottom: 15px;
}