/* Existing styles remain unchanged */
    .text-gradient {
        background: linear-gradient(45deg, #B2872B, #FFC107);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }
    .bg-gradient-dark {
        background: linear-gradient(135deg, #041E43 0%, #0A3A7E 100%);
    }
    /* New styles for added sections */
    .nav-pills .nav-link.active {
        background-color: #B2872B;
        color: white;
    }
    .nav-pills .nav-link {
        color: #041E43;
    }
    .legal-section, .integration-section, .fees-section {
        background-color: #f8f9fa;
        border-radius: 15px;
        padding: 20px;
        margin-bottom: 20px;
    }
    .legal-content {
        max-height: 300px;
        overflow-y: auto;
    }
    .timeline {
        position: relative;
        max-width: 1200px;
        margin: 0 auto;
    }
    .timeline::after {
        content: '';
        position: absolute;
        width: 6px;
        background-color: #B2872B;
        top: 0;
        bottom: 0;
        left: 50%;
        margin-left: -3px;
    }
    .timeline-item {
        padding: 10px 40px;
        position: relative;
        background-color: inherit;
        width: 50%;
    }
    .timeline-item::after {
        content: '';
        position: absolute;
        width: 25px;
        height: 25px;
        right: -17px;
        background-color: #FFF;
        border: 4px solid #B2872B;
        top: 15px;
        border-radius: 50%;
        z-index: 1;
    }
    .left {
        left: 0;
    }
    .right {
        left: 50%;
    }
    .right::after {
        left: -16px;
    }
    .value-card {
        transition: all 0.3s ease;
        border-radius: 15px;
        overflow: hidden;
    }
    .value-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    }
    .value-icon {
        font-size: 2.5rem;
        color: #B2872B;
    }
    .stat-card {
        border-radius: 15px;
        transition: all 0.3s ease;
    }
    .stat-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }
    .testimonial-card {
        border-radius: 15px;
        overflow: hidden;
        transition: all 0.3s ease;
    }
    .testimonial-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }
    @media screen and (max-width: 600px) {
        .timeline::after {
            left: 31px;
        }
        .timeline-item {
            width: 100%;
            padding-left: 70px;
            padding-right: 25px;
        }
        .timeline-item::after {
            left: 15px;
        }
        .left::after, .right::after {
            left: 15px;
        }
        .right {
            left: 0%;
        }
    }
