/* Talks-specific styles inline to avoid conflicts */
        
        .talks-overview {
            background: linear-gradient(135deg, rgba(248, 249, 250, 0.9) 0%, rgba(233, 236, 239, 0.9) 100%);
            border-left: 5px solid var(--accent-color);
        }
        
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 25px;
            margin: 30px 0;
        }
        
        .stat-card {
            background: rgba(255, 255, 255, 0.95);
            padding: 25px 20px;
            border-radius: var(--border-radius);
            text-align: center;
            box-shadow: var(--box-shadow);
            border-left: 4px solid var(--accent-color);
            transition: var(--transition);
        }
        
        .stat-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
            border-left-color: var(--primary-color);
        }
        
        .stat-icon {
            font-size: 2.5em;
            margin-bottom: 15px;
            display: block;
        }
        
        .stat-number {
            font-size: 2.1em;
            font-weight: 700;
            color: var(--primary-color);
            line-height: 1;
        }
        
        .stat-unit {
            font-size: 1em;
            color: var(--secondary-color);
            font-weight: 600;
            margin-top: -4px;
        }
        
        .stat-label {
            font-size: 0.92em;
            color: #666;
            margin-top: 8px;
        }
        
        .talks-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
            gap: 28px;
            margin-top: 30px;
        }
        
        .talk-card {
            background: rgba(255, 255, 255, 0.95);
            border-radius: var(--border-radius);
            padding: 30px;
            box-shadow: var(--box-shadow);
            border-left: 5px solid var(--accent-color);
            transition: var(--transition);
            position: relative;
        }
        
        .talk-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
            border-left-color: var(--primary-color);
        }
        
        .talk-card.keynote {
            border-left-color: var(--primary-color);
            box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
        }
        
        .talk-card.webinar {
            border-left-color: var(--secondary-color);
            box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
        }
        
        .keynote-badge {
            position: absolute;
            top: -10px;
            right: 20px;
            background: var(--primary-color);
            color: white;
            padding: 6px 14px;
            border-radius: 16px;
            font-size: 0.8em;
            font-weight: 700;
        }
        
        .webinar-badge {
            position: absolute;
            top: -10px;
            right: 20px;
            background: var(--secondary-color);
            color: white;
            padding: 6px 14px;
            border-radius: 16px;
            font-size: 0.8em;
            font-weight: 700;
        }
        
        .talk-header {
            display: flex;
            align-items: flex-start;
            gap: 20px;
            margin-bottom: 18px;
        }
        
        .talk-icon {
            font-size: 2.8em;
            width: 70px;
            height: 70px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(167, 201, 87, 0.1);
            border-radius: 50%;
            flex-shrink: 0;
        }
        
        .talk-meta h3 {
            color: var(--primary-color);
            font-size: 1.2em;
            margin: 0 0 8px;
            line-height: 1.3;
        }
        
        .talk-event {
            color: var(--secondary-color);
            font-weight: 600;
            font-size: 1.05em;
            margin-bottom: 4px;
        }
        
        .talk-organizer {
            color: #666;
            font-size: 0.95em;
            margin-bottom: 4px;
        }
        
        .talk-date {
            color: #666;
            font-size: 0.9em;
        }
        
        .talk-type {
            background: rgba(106, 153, 78, 0.1);
            color: var(--secondary-color);
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 0.85em;
            font-weight: 600;
            display: inline-block;
            margin-top: 8px;
        }
        
        .talk-details {
            margin: 16px 0;
            background: rgba(248, 249, 250, 0.8);
            padding: 16px;
            border-radius: var(--border-radius);
            border-left: 3px solid var(--secondary-color);
        }
        
        .talk-details h5 {
            color: var(--primary-color);
            margin: 0 0 10px;
            font-size: 1.05em;
        }
        
        .talk-details p {
            margin: 0 0 8px;
            font-size: 0.95em;
            color: #555;
        }
        
        .talk-audience {
            background: rgba(167, 201, 87, 0.1);
            color: var(--primary-color);
            padding: 6px 12px;
            border-radius: 15px;
            font-size: 0.85em;
            font-weight: 600;
            display: inline-block;
            margin-top: 10px;
        }
        
        .timeline-talks {
            margin-top: 30px;
        }
        
        .timeline-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 20px;
        }
        
        .timeline-card {
            background: rgba(255, 255, 255, 0.95);
            padding: 20px;
            border-radius: var(--border-radius);
            box-shadow: var(--box-shadow);
            border-top: 4px solid var(--accent-color);
            transition: var(--transition);
            position: relative;
        }
        
        .timeline-card:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
        }
        
        .timeline-year {
            position: absolute;
            top: -12px;
            left: 20px;
            background: var(--primary-color);
            color: white;
            padding: 4px 12px;
            border-radius: 12px;
            font-size: 0.8em;
            font-weight: 700;
        }
        
        .timeline-card h4 {
            color: var(--primary-color);
            font-size: 1.1em;
            line-height: 1.3;
            margin: 15px 0 10px;
        }
        
        .timeline-organizer {
            color: var(--secondary-color);
            font-weight: 600;
            font-size: 0.95em;
            margin-bottom: 8px;
        }
        
        .timeline-details {
            color: #555;
            font-size: 0.9em;
            line-height: 1.6;
        }
        
        @media (max-width: 768px) {
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .talks-grid,
            .timeline-grid {
                grid-template-columns: 1fr;
            }
            .talk-header {
                flex-direction: column;
                text-align: center;
                gap: 15px;
            }
        }
        
        @media (max-width: 480px) {
            .stats-grid {
                grid-template-columns: 1fr;
            }
        }