/* Financial Report Section - Simple & Clean */
.financial-report-section {
    padding: 30px 0 50px 0;
    background: transparent;
}

.financial-report-wrapper {
    padding: 20px 0;
}

.financial-content {
    text-align: center;
}

.financial-icon {
    width: 60px;
    height: 60px;
    background: #1B5E20;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 26px;
    margin-bottom: 15px;
}

.financial-content h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 12px;
}

.financial-content p {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
    max-width: 700px;
    margin: 0 auto 8px auto;
}

.financial-content p:last-of-type {
    margin-bottom: 20px;
}

.financial-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.financial-btn {
    min-width: 200px;
}

/* Responsive */
@media (max-width: 768px) {
    .financial-report-section {
        padding: 20px 0 30px 0;
    }
    
    .financial-content h3 {
        font-size: 20px;
    }
    
    .financial-content p {
        font-size: 14px;
    }
    
    .financial-icon {
        width: 50px;
        height: 50px;
        font-size: 22px;
    }
    
    .financial-btn {
        min-width: 100%;
    }
}

@media (max-width: 576px) {
    .financial-content h3 {
        font-size: 18px;
    }
    
    .financial-icon {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
}