.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    background-color: #fff;
}

/* Header Styles */
.page-header {
    text-align: center;
    margin-bottom: 50px;
}

.page-header h1 {
    font-size: 48px;
    font-weight: 900;
    color: black;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.page-header p {
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto;
}

/* Team Section */
.team-section {
    margin-bottom: 60px;
}

.section-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 30px;
    text-align: center;
    text-transform: uppercase;
}

.team-members {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
}

.team-member {
    width: 280px;
    text-align: center;
}

.member-photo {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 20px;
    border: 5px solid #f0f0f0;
}

.member-name {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 5px;
}

.member-position {
    font-size: 16px;
    color: #666;
    margin-bottom: 10px;
}

.donation-badge {
    display: inline-block;
    background-color: #f0f0f0;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: bold;
    color: #333;
    margin-top: 10px;
}

/* Board Section */
.board-section {
    margin-top: 60px;
}

.board-members {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

.board-member {
    width: 220px;
    text-align: center;
}

.board-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 15px;
    border: 5px solid #f0f0f0;
}

.placeholder-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin: 0 auto 15px;
    background-color: #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 14px;
}