 /* SEMINARS PAGE BASE CONFIGS */
    .seminars-container {
        max-width: 1100px;
        margin: 60px auto;
        padding: 0 20px;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }
    .seminars-hero {
        text-align: center;
        margin-bottom: 50px;
    }
    .seminars-hero h2 {
        color: #0a2240;
        font-size: 36px;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        margin-bottom: 5px;
    }
    .seminars-hero h4 {
        color: #ff6b35;
        font-size: 15px;
        text-transform: uppercase;
        letter-spacing: 2px;
        margin-bottom: 20px;
    }
    .seminars-divider {
        width: 80px;
        height: 4px;
        background: #ff6b35;
        margin: 0 auto;
        border-radius: 2px;
    }
    
    /* SEMINAR CARD LAYOUT */
    .seminar-section-title {
        color: #0a2240;
        font-size: 22px;
        font-weight: 700;
        margin: 40px 0 20px 0;
        padding-bottom: 10px;
        border-bottom: 2px solid #edf2f7;
    }
    .seminar-card {
        background: #ffffff;
        border-radius: 8px;
        box-shadow: 0 4px 20px rgba(0,0,0,0.05);
        border-left: 5px solid #0a2240;
        padding: 30px;
        margin-bottom: 30px;
        transition: transform 0.2s ease;
    }
    .seminar-card:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 25px rgba(0,0,0,0.08);
    }
    .seminar-meta {
        display: flex;
        gap: 20px;
        font-size: 13px;
        color: #ff6b35;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        margin-bottom: 12px;
    }
    .seminar-meta span {
        display: flex;
        align-items: center;
        gap: 5px;
    }
    .seminar-card h3 {
        color: #2d3748;
        font-size: 22px;
        margin: 0 0 15px 0;
        font-weight: 700;
        line-height: 1.4;
    }
    .seminar-description {
        color: #4a5568;
        font-size: 15px;
        line-height: 1.6;
        text-align: justify;
        margin-bottom: 20px;
    }

    /* DETAILS TABLE STRUCTURE */
    .seminar-details-table {
        width: 100%;
        border-collapse: collapse;
        margin-top: 15px;
        background-color: #f8fafc;
        border-radius: 6px;
        overflow: hidden;
    }
    .seminar-details-table td {
        padding: 12px 15px;
        font-size: 14px;
        border-bottom: 1px solid #e2e8f0;
        color: #4a5568;
    }
    .seminar-details-table tr:last-child td {
        border-bottom: none;
    }
    .seminar-details-table td.label-col {
        font-weight: 700;
        color: #1a202c;
        width: 25%;
        background-color: #f1f5f9;
    }

    /* BADGES */
    .status-badge {
        display: inline-block;
        padding: 4px 10px;
        font-size: 11px;
        font-weight: 700;
        text-transform: uppercase;
        border-radius: 4px;
        margin-left: auto;
    }
    .badge-upcoming {
        background-color: #e3f2fd;
        color: #0d47a1;
    }
    .badge-completed {
        background-color: #f1f5f9;
        color: #475569;
    }

    .no-events {
        color: #718096;
        font-style: italic;
        padding: 15px;
    }

    /* RESPONSIVE DESIGN */
    @media (max-width: 768px) {
        .seminar-meta {
            flex-direction: column;
            gap: 5px;
        }
        .seminar-details-table td {
            display: block;
            width: 100% !important;
        }
        .seminar-details-table td.label-col {
            background-color: #e2e8f0;
            padding-bottom: 4px;
        }
        .seminar-details-table td:not(.label-col) {
            padding-top: 4px;
            margin-bottom: 5px;
        }
    }