/* Speakers Section Styles */
.speakers-section {
    background-color: transparent; /* Background handled by scroll-section */
    padding: 80px 0;
    position: relative;
}

.speakers-section h2 {
    font-family: var(--font-heading, 'Poppins', sans-serif);
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 3rem;
    position: relative;
    display: inline-block;
    width: 100%;
    text-align: center;
}

.speakers-section h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #1c4179 0%, #1c4179 100%);
    border-radius: 2px;
}

/* Responsive */
@media (max-width: 768px) {
    .speakers-section {
        padding: 60px 0;
    }
    
    .speakers-section h2 {
        font-size: 2rem;
    }
}

