
        :root {
            --navy: #0d2f5ed6;
            --navy-dark: #051b38f2;
            --navy-light: #1a4b8c;
            --teal: #20c997;
            --teal-dark: #149672;
            --cyan: #464fb7;
            --white: #ffffff;
            --light: #f8f9fa;
            --gray: #6c757d;
            --dark-text: #212529;
            --light-text: #ffffff;
            --transition: all 0.3s ease-in-out;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Poppins', sans-serif;
            color: var(--dark-text);
            overflow-x: hidden;
            line-height: 1.6;
            background: var(--light);
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            margin-bottom: 1rem;
        }
        
        a {
            text-decoration: none;
            transition: var(--transition);
        }
        
        /* Hero Section */
        .page-hero {
            padding: 120px 0 80px;
            background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
            color: var(--light-text);
            text-align: center;
            margin-top: 20px;
        }
        
        .page-hero h1 {
            font-size: 2.8rem;
            margin-bottom: 1rem;
        }
        
        .page-hero p {
            font-size: 1.1rem;
            max-width: 600px;
            margin: 0 auto;
            opacity: 0.9;
        }
        
        /* Content Section */
        .content-section {
            padding: 80px 0;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 50px;
            position: relative;
        }
        
        .section-title h2 {
            color: var(--navy);
            font-size: 2.2rem;
        }
        
        .section-title p {
            color: var(--gray);
            font-size: 1.1rem;
            max-width: 600px;
            margin: 0 auto;
        }
        
        .section-title:after {
            content: '';
            position: absolute;
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, var(--teal) 0%, var(--cyan) 100%);
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            border-radius: 2px;
        }
        
        /* Event Cards */
        .event-card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            transition: var(--transition);
            height: 100%;
            margin-bottom: 30px;
        }
        
        .event-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
        }
        
        .event-date {
            background: linear-gradient(135deg, var(--teal) 0%, var(--cyan) 100%);
            color: white;
            padding: 15px;
            text-align: center;
        }
        
        .event-date .day {
            font-size: 2rem;
            font-weight: 700;
            line-height: 1;
        }
        
        .event-date .month {
            font-size: 1rem;
            text-transform: uppercase;
        }
        
        .event-body {
            padding: 25px;
        }
        
        .event-type {
            display: inline-block;
            padding: 5px 12px;
            background: rgba(32, 201, 151, 0.1);
            color: var(--teal);
            border-radius: 30px;
            font-size: 0.8rem;
            font-weight: 500;
            margin-bottom: 15px;
        }
        
        .event-title {
            color: var(--navy);
            font-size: 1.3rem;
            margin-bottom: 15px;
            line-height: 1.4;
        }
        
        .event-excerpt {
            color: var(--gray);
            margin-bottom: 20px;
            font-size: 0.95rem;
        }
        
        .event-details {
            display: flex;
            flex-wrap: wrap;
            margin-bottom: 20px;
        }
        
        .event-detail {
            display: flex;
            align-items: center;
            margin-right: 20px;
            margin-bottom: 10px;
            color: var(--gray);
            font-size: 0.9rem;
        }
        
        .event-detail i {
            margin-right: 8px;
            color: var(--teal);
        }
        
        .button1 {
            display: inline-block;
            padding: 10px 25px;
            background: linear-gradient(90deg, var(--teal) 0%, var(--cyan) 100%);
            color: white;
            border-radius: 50px;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: var(--transition);
            font-size: 0.9rem;
            border: none;
        }
        
        .button1:hover {
            background: linear-gradient(90deg, var(--teal-dark) 0%, var(--cyan) 100%);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
            color: white;
        }
        
        .button-outline {
            display: inline-block;
            padding: 10px 25px;
            background: transparent;
            color: var(--teal);
            border: 2px solid var(--teal);
            border-radius: 50px;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: var(--transition);
            font-size: 0.9rem;
        }
        
        .button-outline:hover {
            background: var(--teal);
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }
        
        /* Tabs */
        .nav-tabs {
            border-bottom: 2px solid #e9ecef;
            margin-bottom: 30px;
            justify-content: center;
        }
        
        .nav-tabs .nav-link {
            color: var(--gray);
            font-weight: 500;
            border: none;
            padding: 12px 25px;
            margin: 0 5px;
            border-radius: 50px;
        }
        
        .nav-tabs .nav-link.active {
            background: linear-gradient(90deg, var(--teal) 0%, var(--cyan) 100%);
            color: white;
            border: none;
        }
        
        /* Responsive Styles */
        @media (max-width: 991.98px) {
            .page-hero, .content-section {
                padding: 60px 0;
            }
        }
        
        @media (max-width: 767.98px) {
            .page-hero h1 {
                font-size: 2.2rem;
            }
            
            .section-title h2 {
                font-size: 1.8rem;
            }
            
            .nav-tabs .nav-link {
                padding: 10px 15px;
                font-size: 0.9rem;
            }
        }
    