.about-hero {
    background-color: #111;
    color: #fff;
    padding: 60px 20px;
    text-align: center;
}
.about-container {
    max-width: 1100px;
    margin: 40px auto;
    padding: 0 20px;
}
.narrative-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #333;
    margin-bottom: 20px;
    text-align: left;
}
.founder-section {
    background: #f9f9f9;
    padding: 50px 0;
}
.founder-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    align-items: center;
}
.founder-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.image-caption {
    font-size: 0.85rem;
    color: #666;
    display: block;
    margin-top: 8px;
    font-style: italic;
}
.founder-text h2 { color: #ffd700; margin-bottom: 5px; }
.founder-text h3 { margin: 0 0 15px 0; color: #222; }
.founder-text p { line-height: 1.6; color: #444; margin-bottom: 15px; text-align: left; }

.trustees-section h2 { text-align: center; margin-bottom: 30px; }
.trustees-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}
.trustee-card {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
}
.trustee-card img {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
}
.trustee-role { font-weight: bold; color: #007bff; margin-bottom: 10px; }
.trustee-bio { font-size: 0.95rem; color: #555; line-height: 1.5; }