.fta-conference-overview {
    background-image: url('../images/fta-photos/fta-banner/FTA-banner-05.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    padding: 60px 0;
}

.fta-conference-overview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.75);
}

.fta-conference-overview .container {
    position: relative;
    z-index: 1;
}

.fta-conference-overview .section-header-content {
    margin-bottom: 20px;
}

.fta-conference-overview .section-badge {
    background-color: #ff6b00;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 10px;
    font-size: 14px;
}

.fta-conference-overview .section-title {
    color: white;
    font-size: 32px;
    margin: 0;
}

.fta-conference-overview .section-line {
    width: 60px;
    height: 3px;
    background-color: #ff6b00;
    margin: 20px auto;
}

.fta-conference-overview .section-description {
    color: #e5e5e5;
    font-size: 16px;
    max-width: 800px;
    margin: 0 auto;
}

/* Table Styles */
.conference-agenda {
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 10px;
    overflow: hidden;
    margin-top: 40px;
}

.agenda-table {
    width: 100%;
    border-collapse: collapse;
}

.agenda-table thead {
    background-color: #ff6b00;
    color: white;
}

.agenda-table th {
    padding: 15px 20px;
    text-align: left;
    font-weight: 600;
}

.agenda-table td {
    padding: 15px 20px;
    border-bottom: 1px solid #e5e5e5;
}

.time-column {
    width: 150px;
}

.time-slot {
    color: #000000;
    font-weight: 500;
}

.activity-title {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: #1e40af;
}

.activity-description {
    margin: 5px 0 0;
    color: #666;
    font-size: 14px;
}

.break-session {
    background-color: rgba(255, 107, 0, 0.1);
}

.breakout-sessions {
    margin-top: 10px;
    background-color: #1e40af;
    padding: 15px;
    border-radius: 8px;
    color: white;
}

.breakout-sessions .session-item {
    color: white;
    margin: 8px 0;
}

.breakout-sessions .session-item strong {
    color: white;
    font-weight: 600;
}

.session-item {
    margin: 5px 0;
    color: #666;
    font-size: 14px;
}

.session-item strong {
    color: #ff6b00;
}

@media (max-width: 768px) {
    .time-column {
        width: 120px;
    }
    
    .agenda-table th,
    .agenda-table td {
        padding: 12px 15px;
    }
}

@media (max-width: 480px) {
    .fta-conference-overview {
        padding: 40px 0;
    }
    
    .time-column {
        width: 100px;
    }
    
    .agenda-table th,
    .agenda-table td {
        padding: 10px;
    }
    
    .activity-title {
        font-size: 14px;
    }
}