﻿body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

.container-financial {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 40px;
}

.container .financial-head {
    text-transform: uppercase;
    color: #113266;
    font-weight: bold;
}

.container .financial-head-text {
    color: #a61118;
}

.container .financial-details {
    color: #c79931;
    font-size: 26px;
    margin-bottom: 10px;
    margin-top: 20px;
}


.hero-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
}

.btn-explore-more {
    transition: transform 0.3s ease, background-color 0.3s ease;
    border: solid;
    color: #fff;
    background-color: #a61118;
}

    .btn-explore-more:hover {
        transform: scale(1.1);
        background-color: #c79931 !important;
        color: #fff !important;
        border: solid;
    }

.highlight {
    font-weight: bold;
    color: #2c3e50;
}

.point-list {
    padding: 0;
    list-style: none;
}

    .point-list .list-group-item {
        display: flex;
        align-items: center;
        padding: 10px 15px;
    }

        .point-list .list-group-item::before {
            content: "\1F6E1"; /* Unicode for shield symbol */
            color: #007bff;
            font-weight: bold;
            font-size: 22px;
            margin-right: 15px;
        }


