.fund {
    padding: 60px 0;
    background-color: #ffffff;
    color: #333;
}

.fund h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 40px;
    color: #4169E1;
}

.fund-content {
    max-width: 800px;
    margin: 0 auto 40px auto;
}

.charts-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.donut-charts {
    display: flex;
    justify-content: space-between; /* 양옆으로 나란히 배치 */
    width: 100%;
    max-width: 800px;
    gap: 20px;
    margin-bottom: 40px;
}

.chart {
    flex: 1;
    height: 300px;
}

.bar-line-chart {
    width: 100%;
    max-width: 800px;
    height: 400px;
}

.fund-details {
    list-style: none;
    padding: 0;
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.fund-details li {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 10px;
}

.fund-details li::before {
    content: "• ";
    color: #4169E1;
}
