        :root {
            --primary: #145867;
            --primary-light: #2C8B9E;
            --accent: #C22660;
            --accent-light: #F2D9E4;
            --dark: #0A0F14;
            --light: #FAFBFC;
            --gray: #6B7280;
            --glass-bg: rgba(255, 255, 255, 0.85);
            --glass-border: rgba(255, 255, 255, 0.5);
            --shadow: 0 8px 32px rgba(20, 88, 103, 0.1);
            --radius: 24px;
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; }

        body {
            font-family: 'Inter', sans-serif;
            background: var(--light);
            color: var(--dark);
            line-height: 1.6;
            overflow-x: hidden;
        }

        h1, h2, h3, h4, h5 {
            font-family: 'Space Grotesk', sans-serif;
            font-weight: 700;
            line-height: 1.2;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }

        a { text-decoration: none; color: inherit; transition: 0.3s; }
        button { font-family: inherit; cursor: pointer; border: none; background: none; }
        img { max-width: 100%; display: block; border-radius: 12px; }

        header {
            position: fixed;
            top: 0; left: 0; right: 0;
            z-index: 1000;
            padding: 16px 0;
            transition: 0.3s;
            background: var(--glass-bg);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid var(--glass-border);
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-shrink: 0;
        }

        .logo-img {
            height: 80px;
            width: auto;
            max-width: 200px;
            object-fit: contain;
        }

        .nav-links {
            display: flex;
            gap: 32px;
            align-items: center;
        }

        .nav-links a {
            color: var(--dark);
            font-weight: 500;
            font-size: 0.95rem;
            position: relative;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--accent);
            transition: 0.3s;
        }

        .nav-links a:hover::after,
        .nav-links a.active::after {
            width: 100%;
        }

        .btn {
            padding: 14px 28px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.95rem;
            transition: 0.3s;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .btn-primary {
            background: var(--primary);
            color: white;
            box-shadow: 0 4px 20px rgba(20, 88, 103, 0.3);
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 30px rgba(20, 88, 103, 0.4);
            background: var(--accent);
        }

        .page-header {
            padding: 180px 0 80px;
            background: linear-gradient(180deg, #e8b8cc 0%, var(--accent-light) 35%, var(--light) 100%);
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .page-header::before {
            content: '';
            position: absolute;
            top: -100px;
            left: -100px;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, var(--primary-light) 0%, transparent 70%);
            opacity: 0.35;
            border-radius: 50%;
        }

        .event-details,
        .event-details-inline {
            margin-top: 12px;
            font-size: 0.95rem;
            color: var(--gray);
        }

        .event-details summary,
        .event-details-inline summary {
            cursor: pointer;
            color: var(--accent);
            font-weight: 600;
        }

        .event-details ul {
            margin: 12px 0 12px 20px;
        }

        .page-header h1 {
            font-size: 3.5rem;
            color: var(--primary);
            margin-bottom: 16px;
            position: relative;
            z-index: 1;
        }

        .page-header p {
            font-size: 1.2rem;
            color: var(--gray);
            max-width: 600px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .tabs-nav {
            display: flex;
            justify-content: center;
            gap: 12px;
            margin-top: 40px;
            position: relative;
            z-index: 2;
        }

        .tab-btn {
            padding: 12px 32px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1rem;
            background: white;
            border: 1px solid #E5E7EB;
            color: var(--gray);
            transition: 0.3s;
        }

        .tab-btn:hover { border-color: var(--primary); color: var(--primary); }

        .tab-btn.active {
            background: var(--primary);
            color: white;
            border-color: var(--primary);
            box-shadow: 0 4px 15px rgba(20, 88, 103, 0.3);
        }

        section { padding: 100px 0; }

        .section-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
            margin-bottom: 40px;
        }

        .section-header h2 {
            font-size: 2rem;
            color: var(--primary);
        }

        .view-all {
            color: var(--accent);
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .featured-event {
            background: var(--primary);
            border-radius: var(--radius);
            overflow: hidden;
            display: grid;
            grid-template-columns: 1fr 1fr;
            color: white;
            box-shadow: 0 20px 60px rgba(20, 88, 103, 0.2);
            margin-bottom: 80px;
        }

        .featured-img {
            min-height: 400px;
            position: relative;
            overflow: hidden;
            background: linear-gradient(135deg, var(--primary-light), var(--accent));
        }

        .featured-img img {
            width: 100%;
            height: 100%;
            min-height: 400px;
            object-fit: cover;
            display: block;
            border-radius: 0;
        }

        .featured-img::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(90deg, rgba(20,88,103,0.35), transparent);
            pointer-events: none;
        }

        .featured-content {
            padding: 60px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .badge {
            display: inline-block;
            background: rgba(255,255,255,0.2);
            padding: 6px 16px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
            width: fit-content;
            margin-bottom: 20px;
        }

        .featured-content h3 {
            font-size: 2.5rem;
            margin-bottom: 20px;
        }

        .featured-content p {
            opacity: 0.9;
            margin-bottom: 32px;
            font-size: 1.1rem;
            line-height: 1.7;
        }

        .event-meta {
            display: flex;
            gap: 24px;
            margin-bottom: 32px;
            opacity: 0.8;
            font-size: 0.95rem;
        }

        .event-meta span {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .btn-white {
            background: white;
            color: var(--primary);
            width: fit-content;
        }

        .btn-white:hover {
            background: var(--accent-light);
            color: var(--accent);
        }

        /* --- Events Grid --- */
        .events-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }

        .event-card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: 0.3s;
            border: 1px solid rgba(0,0,0,0.03);
            position: relative;
        }

        .event-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(20, 88, 103, 0.15);
        }

        .event-card-img {
            height: 200px;
            position: relative;
            overflow: hidden;
            background: linear-gradient(135deg, #E0F2F7, #F2D9E4);
        }

        .event-card-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 0;
        }

        .event-date-badge {
            position: absolute;
            top: 16px;
            right: 16px;
            background: white;
            padding: 10px 14px;
            border-radius: 12px;
            text-align: center;
            box-shadow: 0 4px 10px rgba(0,0,0,0.1);
            line-height: 1;
        }

        .date-day {
            display: block;
            font-family: 'Space Grotesk', sans-serif;
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--primary);
        }

        .date-month {
            display: block;
            font-size: 0.8rem;
            font-weight: 600;
            color: var(--accent);
            text-transform: uppercase;
            margin-top: 4px;
        }

        .event-card-body {
            padding: 24px;
        }

        .event-tag {
            display: inline-block;
            background: var(--accent-light);
            color: var(--accent);
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
            margin-bottom: 12px;
        }

        .event-card-body h3 {
            font-size: 1.2rem;
            margin-bottom: 12px;
            color: var(--dark);
        }

        .event-card-body p {
            font-size: 0.95rem;
            color: var(--gray);
            margin-bottom: 20px;
        }

        .card-link {
            color: var(--primary);
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .events-gallery-header {
            margin-top: 80px;
        }

        .events-gallery {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            grid-auto-rows: 220px;
            gap: 16px;
        }

        .events-gallery-item {
            margin: 0;
            overflow: hidden;
            border-radius: 20px;
            box-shadow: var(--shadow);
        }

        .events-gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 0;
            transition: transform 0.4s ease;
        }

        .events-gallery-item:hover img {
            transform: scale(1.05);
        }

        .events-gallery-item--wide {
            grid-column: span 2;
        }

        .news-list {
            display: flex;
            flex-direction: column;
            gap: 24px;
        }

        .news-item {
            display: grid;
            grid-template-columns: 250px 1fr;
            gap: 32px;
            background: white;
            padding: 24px;
            border-radius: 20px;
            box-shadow: var(--shadow);
            transition: 0.3s;
            align-items: center;
        }

        .news-item:hover {
            transform: translateX(8px);
            border-left: 4px solid var(--accent);
        }

        .news-img {
            height: 160px;
            border-radius: 12px;
            overflow: hidden;
            background: linear-gradient(135deg, #E0F2F7, #F2D9E4);
        }

        .news-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 0;
        }

        .news-content h3 {
            font-size: 1.3rem;
            margin-bottom: 8px;
            color: var(--dark);
        }

        .news-content p {
            color: var(--gray);
            font-size: 0.95rem;
            margin-bottom: 16px;
        }

        .news-meta {
            display: flex;
            gap: 16px;
            font-size: 0.85rem;
            color: var(--gray);
            font-weight: 500;
        }

        .news-meta span {
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .read-more {
            color: var(--accent);
            font-weight: 600;
            font-size: 0.95rem;
        }

        .page-cta {
            background: linear-gradient(135deg, var(--primary), var(--primary-light));
            border-radius: var(--radius);
            padding: 80px;
            text-align: center;
            position: relative;
            overflow: hidden;
            margin: 60px auto;
            max-width: 1150px;
        }

        .page-cta::before {
            content: '';
            position: absolute;
            top: -100px; right: -100px;
            width: 300px; height: 300px;
            background: var(--accent);
            border-radius: 50%;
            opacity: 0.15;
        }

        .page-cta h2 {
            color: white;
            font-size: 2.5rem;
            margin-bottom: 16px;
            position: relative;
            z-index: 1;
        }

        .page-cta p {
            color: rgba(255,255,255,0.9);
            font-size: 1.15rem;
            margin-bottom: 32px;
            position: relative;
            z-index: 1;
        }

        footer {
            background: var(--dark);
            color: rgba(255,255,255,0.6);
            padding: 60px 0 30px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1.5fr 1fr 1fr 1fr;
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-brand .logo {
            color: white;
            margin-bottom: 16px;
        }

        .footer-brand p { font-size: 0.95rem; line-height: 1.7; }

        .footer-col h4 {
            color: white;
            font-size: 1rem;
            margin-bottom: 20px;
        }

        .footer-col ul { list-style: none; }
        .footer-col li { margin-bottom: 12px; }
        .footer-col a { color: rgba(255,255,255,0.6); }
        .footer-col a:hover { color: var(--accent); }

        .footer-bottom {
            padding-top: 24px;
            border-top: 1px solid rgba(255,255,255,0.1);
            text-align: center;
            font-size: 0.9rem;
        }

        @media (max-width: 992px) {
            .featured-event { grid-template-columns: 1fr; }
            .featured-img { min-height: 250px; }
            .featured-content { padding: 40px; }
            .events-grid { grid-template-columns: repeat(2, 1fr); }
            .events-gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
            .events-gallery-item--wide { grid-column: span 2; }
            .news-item { grid-template-columns: 1fr; }
            .footer-grid { grid-template-columns: 1fr 1fr; }
        }

        @media (max-width: 768px) {
            .page-header h1 { font-size: 2.2rem; }
            .section-header { flex-direction: column; align-items: flex-start; gap: 16px; }
            .events-grid { grid-template-columns: 1fr; }
            .events-gallery { grid-template-columns: 1fr; grid-auto-rows: 200px; }
            .events-gallery-item--wide { grid-column: span 1; }
            .nav-links { display: none; }
        }

        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .tab-content { display: none; }
        .tab-content.active { display: block; }
