
.selffund-about section {
    background-color: var(--chestnut-white);;
    padding: 2rem;
    margin-bottom: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transition: transform 0.2s ease;
}


.selffund-about h2 {
    color:  var(--chestnut-red);;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.selffund-about p {
    margin: 1rem 0;
}

.selffund-about ul {
    padding-left: 1.2rem;
    list-style: disc;
}

.selffund-about .highlight {
    background: var(--chestnut-red);
    color: #fff;
    padding: 0.3rem 0.6rem;
    border-radius: 6px;
    font-weight: bold;
}

.selffund-about .card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 1rem;
}
.selffund-about .card {
    background: #fafafa;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: 0.3s;
}
.selffund-about .card:hover {
    background: #f0f0f0;
}

.selffund-about footer {
    text-align: center;
    padding: 2rem;
    font-size: 0.9rem;
    color: #777;
}
.selffund-about table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
}
.selffund-about table th, table td {
    border: 1px solid #ccc;
    padding: 0.6rem;
    text-align: center;
    font-size: 0.95rem;
}
.selffund-about table th {
    background: #f0f0f0;
    color: #802E2C;
}
.selffund-about .note {
    font-size: 0.9rem;
    color: #555;
    margin-top: 0.5rem;
}
.selffund-about ul {
    padding-left: 1.2rem;
}
.selffund-about li {
    margin: 0.4rem 0;
}
.selffund-about .funding-flow {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}
.selffund-about .box {
    flex: 1;
    min-width: 200px;
    background: #fafafa;
    border: 2px solid #802E2C;
    border-radius: 10px;
    text-align: center;
    padding: 1rem;
}
.selffund-about .box h3 {
    background: #802E2C;
    color: #fff;
    margin: -1rem -1rem 1rem;
    padding: 0.5rem;
    border-radius: 8px 8px 0 0;
    font-size: 1rem;
}
.selffund-about .symbol {
    font-size: 1.5rem;
    font-weight: bold;
    color: #802E2C;
}