:root {
    --maroon: #801650;
    --navy: #001f3f;
    --gold: #fbbf24;
    --race-bg-soft: #fdf5f9;
}

.committee-section {
    padding: 60px 0;
    background: #f8fafc;
}

.section-subtitle {
    display: inline-block;
    color: var(--maroon);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    position: relative;
    padding: 0 50px;
}

.section-subtitle::before,
.section-subtitle::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 40px;
    height: 2px;
    background-color: var(--maroon);
}

.section-subtitle::before {
    left: 0;
}

.section-subtitle::after {
    right: 0;
}

.section-main-title {
    color: var(--navy);
    font-size: 42px;
    font-weight: 800;
    line-height: 1.2;
    margin-top: 1rem;
}

.section-main-title span {
    color: var(--maroon);
}

.text-navy {
    color: var(--navy) !important;
}

.text-maroon {
    color: var(--maroon) !important;
}

.fw-bold {
    font-weight: 700 !important;
}

.fs-2 {
    font-size: 2rem !important;
}

.fs-3 {
    font-size: 1.75rem !important;
}

.fs-4 {
    font-size: 1.5rem !important;
}

.text-center {
    text-align: center;
}

.mb-1 {
    margin-bottom: 0.25rem;
}

.mb-3 {
    margin-bottom: 1rem;
}

.mb-4 {
    margin-bottom: 1.5rem;
}

.mb-5 {
    margin-bottom: 3rem;
}

.pt-5 {
    padding-top: 3rem;
}

.py-5 {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.text-muted {
    color: #6c757d;
}

.container {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

@media (min-width: 576px) {
    .container {
        max-width: 540px;
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 720px;
    }
}

@media (min-width: 992px) {
    .container {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

.g-4 {
    gap: 1.5rem;
}

.justify-content-center {
    justify-content: center;
}

.col-sm-6 {
    flex: 0 0 50%;
    max-width: 50%;
    padding-right: 15px;
    padding-left: 15px;
}

.col-md-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
    padding-right: 15px;
    padding-left: 15px;
}

.col-lg-3 {
    flex: 0 0 25%;
    max-width: 25%;
    padding-right: 15px;
    padding-left: 15px;
}

@media (max-width: 991px) {
    .col-md-4 {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media (max-width: 575px) {
    .col-sm-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

.committee-member-image-large {
    width: 220px;
    height: 220px;
    margin: 0 auto;
    overflow: hidden;
}

.committee-member-image-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: 5px solid var(--gold);
    box-shadow: 0 10px 30px rgba(128, 22, 80, 0.2);
}

.committee-member-image-medium {
    width: 180px;
    height: 180px;
    margin: 0 auto;
    overflow: hidden;
}

.committee-member-image-medium img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: 4px solid var(--maroon);
    box-shadow: 0 8px 25px rgba(128, 22, 80, 0.15);
}

.committee-member-image-normal {
    width: 140px;
    height: 140px;
    margin: 0 auto;
    overflow: hidden;
}

.committee-member-image-normal img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: 3px solid var(--gold);
    box-shadow: 0 6px 20px rgba(128, 22, 80, 0.1);
}

.committee-member-card {
    transition: transform 0.3s ease;
}

.committee-member-card:hover {
    transform: translateY(-10px);
}

.committee-member-name {
    font-size: 18px;
    margin-bottom: 5px;
    line-height: 1.4;
}

.committee-member-designation {
    font-size: 14px;
    margin-bottom: 0;
}

.img-fluid {
    max-width: 100%;
    height: auto;
}

.rounded-circle {
    border-radius: 50% !important;
}

@media (max-width: 767px) {
    .section-main-title {
        font-size: 30px;
    }
    
    .committee-member-image-large {
        width: 180px;
        height: 180px;
    }
    
    .committee-member-image-medium {
        width: 150px;
        height: 150px;
    }
    
    .committee-member-image-normal {
        width: 120px;
        height: 120px;
    }
    
    .col-sm-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}