        :root {
            --primary-dark: #1C355E;
            --primary-green: #00AE42;
            --primary-blue: #005CB9;
            --light-gray: #f8f9fa;
            --dark-gray: #343a40;
        }

        .hero-section {
            background: linear-gradient(rgba(28, 53, 94, 0.8), rgba(28, 53, 94, 0.9)), url('https://images.unsplash.com/photo-1511578314322-379afb476865?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 100px 0;
            margin-bottom: 50px;
        }

        .section-title {
            color: var(--primary-dark);
            position: relative;
            margin-bottom: 30px;
            padding-bottom: 10px;
        }

        .section-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 3px;
            background-color: var(--primary-green);
        }

        .event-card {
            border: none;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            margin-bottom: 25px;
            height: 100%;
        }

        .event-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
        }

        .event-card .card-img-top {
            height: 200px;
            object-fit: fill;
        }

        .event-date {
            position: absolute;
            top: 10px;
            right: 10px;
            background-color: var(--primary-green);
            color: white;
            padding: 5px 10px;
            border-radius: 5px;
            font-weight: bold;
        }

        .event-category {
            position: absolute;
            top: 155px;
            right: 10px;
            background-color: var(--primary-blue);
            color: white;
            padding: 5px 10px;
            border-radius: 5px;
            font-size: 0.8rem;
        }

        .calendar-header {
            background-color: var(--primary-dark);
            color: white;
            padding: 10px;
            border-radius: 5px 5px 0 0;
        }

        .calendar-day-header {
            background-color: var(--light-gray);
            padding: 10px;
            text-align: center;
            font-weight: bold;
        }

        .calendar-day {
            border: 1px solid #eee;
            padding: 10px;
            height: 100px;
            overflow-y: auto;
        }

        .calendar-day.has-event {
            background-color: rgba(0, 174, 66, 0.1);
        }

        .calendar-event {
            font-size: 0.8rem;
            background-color: var(--primary-blue);
            color: white;
            padding: 2px 5px;
            border-radius: 3px;
            margin-bottom: 2px;
            display: block;
        }

        .calendar-day.today {
            background-color: rgba(0, 174, 66, 0.2);
            font-weight: bold;
        }

        .calendar-day.other-month {
            color: #aaa;
            background-color: #f9f9f9;
        }

        .newsletter-form {
            max-width: 500px;
            margin: 0 auto;
        }

        .filter-controls {
            background-color: var(--light-gray);
            padding: 20px;
            border-radius: 5px;
            margin-bottom: 30px;
        }

        .highlight-card {
            border-left: 5px solid var(--primary-green);
        }

        .event-badge {
            background-color: var(--primary-dark);
            color: white;
        }

        .placeholder-img {
            background-color: #eee;
            display: flex;
            align-items: center;
            justify-content: center;
            height: 180px;
            color: #999;
        }

        .bott {
            bottom: 1px;
            width: 92%;
            padding-bottom: 15px;
        }

        .btn-1 {
            user-select: none;
            -moz-user-select: none;
            background: var(--tg-theme-primary) none repeat scroll 0 0;
            border: medium none;
            -webkit-border-radius: 10px;
            -moz-border-radius: 10px;
            -o-border-radius: 10px;
            -ms-border-radius: 10px;
            border-radius: 10px;
            color: var(--tg-color-white-default);
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            font-size: 14px;
            font-weight: 700;
            letter-spacing: 0;
            line-height: 1;
            margin-bottom: 0;
            padding: 8px 8px;
            text-align: center;
            text-transform: uppercase;
            touch-action: manipulation;
            -webkit-transition: all 0.3s ease-out 0s;
            -moz-transition: all 0.3s ease-out 0s;
            -ms-transition: all 0.3s ease-out 0s;
            -o-transition: all 0.3s ease-out 0s;
            transition: all 0.3s ease-out 0s;
            vertical-align: middle;
            white-space: nowrap;
            position: relative;
            overflow: hidden;
            z-index: 1;
        }

        .btn-1:hover,
        .btn-1:focus-visible {
            color: var(--tg-color-white-default);
            background: var(--tg-theme-primary);
        }

        .btn-1:hover:before,
        .btn-1:focus-visible:before {
            top: -40%;
        }

        /* Background slider styles */
        .background-slider {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            overflow: hidden;
        }

        .slider-container {
            width: 100%;
            height: 100%;
            position: relative;
        }

        .slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            opacity: 0;
            transition: opacity 1s ease-in-out;
        }

        .slide.active {
            opacity: 1;
        }

        .breadcrumb__bg {
            position: relative;
        }

        /* Make sure content stays above the slider */
        .breadcrumb__bg>*:not(.background-slider) {
            position: relative;
            z-index: 1;
        }

        .date-display {
            cursor: pointer;
            transition: all 0.3s ease;
            padding: 10px 0px;
            border-radius: 5px;
        }

        .date-display:hover {
            background-color: rgba(0, 92, 185, 0.1);
        }

        .date-text {
            position: relative;
        }

        .date-text:after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 100%;
            height: 1px;
            background-color: var(--primary-blue);
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }

        .date-display:hover .date-text:after {
            transform: scaleX(1);
        }

        .time-display {
            cursor: pointer;
            transition: all 0.3s ease;
            padding: 5px 0;
            border-radius: 5px;
        }

        .time-display:hover {
            background-color: rgba(0, 92, 185, 0.1);
        }

        .time-text {
            position: relative;
            font-weight: bold;
        }

        .time-text:after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 100%;
            height: 1px;
            background-color: var(--primary-blue);
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }

        .time-display:hover .time-text:after {
            transform: scaleX(1);
        }
