.hero-agenda {
        background: linear-gradient(135deg, #F59E0B, #D97706);
        color: white;
        padding: 80px 0;
        text-align: center;
    }

    .hero-badge-agenda {
        display: inline-block;
        background: rgba(255,255,255,0.2);
        padding: 10px 25px;
        border-radius: 30px;
        font-weight: 700;
        margin-bottom: 25px;
    }

    .hero-title-agenda {
        font-family: 'Sora', sans-serif;
        font-size: 3rem;
        font-weight: 800;
        margin-bottom: 20px;
    }

    .hero-description-agenda {
        font-size: 1.2rem;
        opacity: 0.95;
        max-width: 700px;
        margin: 0 auto;
    }

    .calendar-section {
        padding: 60px 0;
        background: #F8FAFC;
    }

    .calendar-layout {
        display: grid;
        grid-template-columns: 300px 1fr;
        gap: 40px;
    }

    .calendar-sidebar {
        position: sticky;
        top: 140px;
        height: fit-content;
    }

    .filter-widget {
        background: white;
        border-radius: 12px;
        padding: 25px;
        margin-bottom: 20px;
        box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    }

    .filter-widget h3 {
        font-family: 'Sora', sans-serif;
        font-size: 1.1rem;
        color: #0A2463;
        margin-bottom: 15px;
    }

    .filter-checkboxes {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .filter-checkboxes label {
        display: flex;
        align-items: center;
        gap: 10px;
        cursor: pointer;
        color: #64748B;
    }

    .filter-select {
        width: 100%;
        padding: 12px;
        border: 2px solid #E2E8F0;
        border-radius: 8px;
        font-family: 'Inter', sans-serif;
    }

    .subscribe-calendar-widget {
        background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
        border-radius: 12px;
        padding: 25px;
        text-align: center;
    }

    .subscribe-calendar-widget h3 {
        font-family: 'Sora', sans-serif;
        color: #0A2463;
        margin-bottom: 10px;
    }

    .subscribe-calendar-widget p {
        font-size: 0.9rem;
        color: #64748B;
        margin-bottom: 15px;
    }

    .btn-subscribe-cal {
        width: 100%;
        padding: 12px;
        background: #3E92CC;
        color: white;
        border: none;
        border-radius: 8px;
        font-weight: 700;
        cursor: pointer;
    }

    .month-section {
        margin-bottom: 50px;
    }

    .month-title {
        font-family: 'Sora', sans-serif;
        font-size: 2rem;
        color: #0A2463;
        margin-bottom: 30px;
        padding-bottom: 15px;
        border-bottom: 3px solid #E2E8F0;
    }

    .month-preview {
        color: #64748B;
    }

    .month-preview a {
        color: #3E92CC;
        font-weight: 600;
    }

    .event-card {
        background: white;
        border-radius: 16px;
        padding: 30px;
        margin-bottom: 20px;
        box-shadow: 0 2px 15px rgba(0,0,0,0.08);
        display: grid;
        grid-template-columns: 100px 1fr auto;
        gap: 25px;
        align-items: center;
        transition: all 0.3s;
    }

    .event-card:hover {
        box-shadow: 0 8px 30px rgba(0,0,0,0.15);
        transform: translateX(5px);
    }

    .event-date-badge {
        width: 100px;
        height: 100px;
        border-radius: 12px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        color: white;
    }

    .event-day-num {
        font-size: 2.5rem;
        font-weight: 800;
        line-height: 1;
    }

    .event-day-name {
        font-size: 0.85rem;
        opacity: 0.9;
        margin-top: 5px;
    }

    .event-content {
        flex: 1;
    }

    .event-type {
        font-size: 0.85rem;
        font-weight: 700;
        text-transform: uppercase;
        margin-bottom: 8px;
    }

    .event-title {
        font-family: 'Sora', sans-serif;
        font-size: 1.3rem;
        color: #0A2463;
        margin-bottom: 12px;
    }

    .event-details {
        display: flex;
        gap: 20px;
        flex-wrap: wrap;
    }

    .event-detail {
        display: flex;
        align-items: center;
        gap: 6px;
        font-size: 0.9rem;
        color: #64748B;
    }

    .event-actions {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .btn-event-remind,
    .btn-event-share {
        padding: 10px 15px;
        border: 2px solid #E2E8F0;
        background: white;
        border-radius: 8px;
        display: flex;
        align-items: center;
        gap: 8px;
        cursor: pointer;
        font-weight: 600;
        color: #0A2463;
        transition: all 0.2s;
        white-space: nowrap;
    }

    .btn-event-remind:hover {
        background: #3E92CC;
        color: white;
        border-color: #3E92CC;
    }

    .major-events {
        padding: 80px 0;
    }

    .section-title {
        font-family: 'Sora', sans-serif;
        font-size: 2.5rem;
        font-weight: 800;
        color: #0A2463;
        text-align: center;
        margin-bottom: 50px;
    }

    .major-events-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .major-event-card {
        background: white;
        border-radius: 20px;
        padding: 40px;
        box-shadow: 0 4px 20px rgba(0,0,0,0.08);
        display: flex;
        gap: 30px;
    }

    .major-event-date {
        width: 100px;
        height: 100px;
        background: linear-gradient(135deg, #F59E0B, #D97706);
        border-radius: 16px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        color: white;
        flex-shrink: 0;
    }

    .major-month {
        font-size: 0.9rem;
        font-weight: 700;
        opacity: 0.9;
    }

    .major-day {
        font-size: 2.5rem;
        font-weight: 800;
        line-height: 1;
        margin-top: 5px;
    }

    .major-event-content h3 {
        font-family: 'Sora', sans-serif;
        font-size: 1.5rem;
        color: #0A2463;
        margin-bottom: 12px;
    }

    .major-event-content p {
        color: #64748B;
        line-height: 1.6;
        margin-bottom: 15px;
    }

    .major-event-location {
        display: inline-block;
        background: #F8FAFC;
        padding: 6px 15px;
        border-radius: 20px;
        font-size: 0.85rem;
        font-weight: 600;
        color: #0A2463;
    }

    @media (max-width: 1024px) {
        .calendar-layout {
            grid-template-columns: 1fr;
        }

        .calendar-sidebar {
            position: static;
        }

        .event-card {
            grid-template-columns: 1fr;
        }

        .major-events-grid {
            grid-template-columns: 1fr;
        }
    }
