.seminar-section {
    background: linear-gradient(180deg, #f4f7fb, #ffffff);
    padding: 60px 20px;
    font-family: 'Segoe UI', Tahoma, sans-serif;
}

.seminar-container {
    max-width: 1100px;
    margin: auto;
}

.seminar-header {
    text-align: center;
    margin-bottom: 40px;
}

.seminar-header h1 {
    font-size: 34px;
    color: #0d2c54;
    margin-bottom: 10px;
}

.seminar-tagline {
    color: #555;
    font-size: 16px;
}

/* Info Card */
.seminar-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-bottom: 50px;
}

.info-card {
    background: #ffffff;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

.info-card h3 {
    color: #0d6efd;
    margin-bottom: 8px;
    font-size: 16px;
}

.info-card p {
    font-weight: 600;
    color: #333;
}

/* Rundown */
.rundown-section h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #0d2c54;
}

.table-wrapper {
    overflow-x: auto;
}

.rundown-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
}

.rundown-table th {
    background: #0d6efd;
    color: #fff;
    padding: 14px;
    text-align: center;
    font-size: 15px;
}

.rundown-table td {
    padding: 12px 14px;
    border-bottom: 1px solid #eaeaea;
    vertical-align: top;
}

.rundown-table tr:hover {
    background: #f1f6ff;
}

.rundown-table td:first-child {
    width: 160px;
    font-weight: 600;
    color: #0d2c54;
}

/* Highlight Key Session */
.rundown-table tr.highlight {
    background: #f9fbff;
}

.rundown-table tr.highlight strong {
    color: #0d6efd;
}
