* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Force full width containers */
html, body {
    width: 100%;
    overflow-x: hidden;
}

.section-hero {
    width: 100%;
    position: relative;
}

.hero-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

/* Content wrapper - full width with small padding on sides */
.content-wrapper {
    width: 100%;
    padding: 60px 2%;
}

.content-inner {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

.section-title {
    font-size: 36px;
    color: #1f2937;
    margin-bottom: 20px;
    border-left: 4px solid #667eea;
    padding-left: 20px;
}

.section-content {
    font-size: 16px;
    line-height: 1.8;
    color: #4b5563;
}

.section-content p {
    margin-bottom: 15px;
}

/* Board Members Section */
.board-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.board-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    border: 1px solid #e5e7eb;
}

.board-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-color: #667eea;
}

.board-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin: 30px auto 15px;
    display: block;
    border: 3px solid #667eea;
}

.board-placeholder {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 30px auto 15px;
}

.board-placeholder i {
    font-size: 50px;
    color: white;
}

.board-name {
    font-size: 20px;
    font-weight: 700;
    color: #1f2937;
    text-align: center;
    margin-bottom: 5px;
}

.board-position {
    font-size: 14px;
    color: #667eea;
    text-align: center;
    margin-bottom: 10px;
    font-weight: 600;
}

.board-bio {
    font-size: 13px;
    color: #6b7280;
    padding: 0 20px 20px;
    text-align: center;
    line-height: 1.5;
}

.board-location {
    font-size: 12px;
    color: #9ca3af;
    text-align: center;
    padding-bottom: 20px;
}

/* Navigation Links - Left aligned, not centered */
.nav-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 15px;
    margin-bottom: 40px;
}

.nav-link-custom {
    display: inline-block;
    padding: 10px 24px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    font-size: 14px;
}

.nav-link-active {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    box-shadow: 0 4px 10px rgba(102,126,234,0.3);
}

.nav-link-active:hover {
    transform: translateY(-2px);
    color: white;
}

.nav-link-inactive {
    background: #f3f4f6;
    color: #4b5563;
}

.nav-link-inactive:hover {
    background: #e5e7eb;
    transform: translateY(-2px);
    color: #667eea;
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 60px 20px;
    background: #f9fafb;
    border-radius: 16px;
}

.empty-state i {
    font-size: 48px;
    color: #cbd5e0;
    margin-bottom: 20px;
}

.empty-state h3 {
    font-size: 24px;
    color: #1f2937;
    margin-bottom: 10px;
}

.empty-state p {
    color: #6b7280;
}

/* Call to Action - Full width with small padding */
.cta-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 60px 2%;
    text-align: center;
    color: white;
    width: 100%;
    margin: 0;
}

.cta-section h2 {
    font-size: 32px;
    margin-bottom: 15px;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 25px;
    opacity: 0.95;
}

.btn-light-custom {
    background: white;
    color: #667eea;
    padding: 12px 30px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s;
    margin: 0 10px;
}

.btn-light-custom:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    color: #667eea;
}

.btn-outline-custom {
    background: transparent;
    color: white;
    padding: 12px 30px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s;
    border: 2px solid white;
    margin: 0 10px;
}

.btn-outline-custom:hover {
    background: white;
    color: #667eea;
    transform: translateY(-2px);
}

/* ============================================
   RESPONSIVE - KEEP SMALL MARGINS
   ============================================ */
@media (max-width: 992px) {
    .content-wrapper {
        padding: 50px 2%;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 28px;
    }
    
    .hero-image {
        height: 250px;
    }
    
    .nav-links {
        justify-content: flex-start;
        gap: 8px;
    }
    
    .nav-link-custom {
        padding: 6px 16px;
        font-size: 12px;
    }
    
    .cta-section h2 {
        font-size: 24px;
    }
    
    .cta-section p {
        font-size: 14px;
    }
    
    .btn-light-custom, .btn-outline-custom {
        padding: 8px 20px;
        font-size: 14px;
        margin: 5px;
    }
    
    .board-grid {
        grid-template-columns: 1fr;
    }
    
    .content-wrapper {
        padding: 40px 16px;
    }
}

@media (max-width: 480px) {
    .content-wrapper {
        padding: 30px 12px;
    }
    
    .section-title {
        font-size: 24px;
        padding-left: 15px;
    }
    
    .cta-section {
        padding: 40px 12px;
    }
    
    .cta-section h2 {
        font-size: 20px;
    }
}

/* Ensure hero image is edge-to-edge */
.section-hero {
    margin: 0;
    padding: 0;
}

/* Keep text left-aligned, not centered */
.section-content {
    text-align: left;
}