        :root {
            --primary: #145867;
            --primary-light: #2C8B9E;
            --accent: #C22660;
            --accent-light: #F2D9E4;
            --dark: #0A0F14;
            --light: #FAFBFC;
            --gray: #6B7280;

            --glass-bg: rgba(255, 255, 255, 0.7);
            --glass-border: rgba(255, 255, 255, 0.3);
            --shadow: 0 8px 32px rgba(20, 88, 103, 0.15);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

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

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

                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; }

        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 40px;
        }

        .bg-gradient {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            background:
                radial-gradient(circle at 20% 30%, rgba(44, 139, 158, 0.35) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(194, 38, 96, 0.25) 0%, transparent 50%),
                radial-gradient(circle at 50% 50%, rgba(242, 217, 228, 0.55) 0%, transparent 70%);
            pointer-events: none;
        }

        header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            padding: 24px 0;
            transition: 0.3s;
        }

        header.scrolled {
            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;
            flex-shrink: 0;
        }

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

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

        .nav-links a {
            color: var(--dark);
            text-decoration: none;
            font-weight: 500;
            font-size: 0.95rem;
            position: relative;
            transition: 0.3s;
        }

        .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 {
            width: 100%;
        }

        .btn {
            padding: 14px 28px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.95rem;
            cursor: pointer;
            transition: all 0.3s;
            border: none;
            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);
        }

        .btn-outline {
            background: transparent;
            border: 2px solid var(--primary);
            color: var(--primary);
        }

        .btn-outline:hover {
            background: var(--primary);
            color: white;
        }

        /* Hero Section - Asymmetric */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding: 160px 0 100px;
            position: relative;
            overflow: hidden;
        }

        .hero-grid {
            display: grid;
            grid-template-columns: 1.2fr 0.8fr;
            gap: 80px;
            align-items: center;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--accent-light);
            color: var(--accent);
            padding: 8px 20px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.85rem;
            margin-bottom: 32px;
            border: 1px solid rgba(194, 38, 96, 0.2);
        }

        .hero-badge::before {
            content: '';
            width: 8px;
            height: 8px;
            background: var(--accent);
            border-radius: 50%;
            animation: pulse 2s infinite;
        }

        @keyframes pulse {

            0%,
            100% {
                opacity: 1;
                transform: scale(1);
            }

            50% {
                opacity: 0.5;
                transform: scale(1.2);
            }
        }

        .hero h1 {
            font-size: 5rem;
            line-height: 1;
            margin-bottom: 32px;
            font-weight: 700;
            letter-spacing: -0.03em;
        }

        .hero h1 span {
            color: var(--primary);
            position: relative;
            display: inline-block;
        }

        .hero h1 span::after {
            content: '';
            position: absolute;
            bottom: 10px;
            left: 0;
            width: 100%;
            height: 12px;
            background: var(--accent-light);
            z-index: -1;
            opacity: 0.6;
        }

        .hero p {
            font-size: 1.25rem;
            color: var(--gray);
            margin-bottom: 48px;
            max-width: 540px;
            line-height: 1.7;
        }

        .hero-buttons {
            display: flex;
            gap: 20px;
            margin-bottom: 60px;
        }

        .hero-stats {
            display: flex;
            gap: 48px;
        }

        .stat {
            display: flex;
            flex-direction: column;
        }

        .stat-number {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 3rem;
            font-weight: 700;
            color: var(--primary);
            line-height: 1;
        }

        .stat-label {
            font-size: 0.9rem;
            color: var(--gray);
            margin-top: 8px;
        }

        /* Hero Visual - Floating Cards */
        .hero-visual {
            position: relative;
            height: 520px;
            min-height: 420px;
        }

        .floating-card {
            position: absolute;
            z-index: 1;
            background: var(--glass-bg);
            backdrop-filter: blur(20px);
            border: 1px solid var(--glass-border);
            border-radius: 24px;
            padding: 32px;
            box-shadow: var(--shadow);
            animation: float 6s ease-in-out infinite;
        }

        .floating-card-1 {
            top: 10%;
            left: 0;
            width: 280px;
            animation-delay: 0s;
        }

        .floating-card-2 {
            top: 40%;
            right: 0;
            width: 240px;
            animation-delay: 2s;
        }

        .floating-card-3 {
            bottom: 10%;
            left: 10%;
            width: 260px;
            animation-delay: 4s;
        }

        @keyframes float {

            0%,
            100% {
                transform: translateY(0) rotate(0deg);
            }

            50% {
                transform: translateY(-20px) rotate(2deg);
            }
        }

        .card-icon {
            width: 56px;
            height: 56px;
            background: linear-gradient(135deg, var(--primary-light), var(--accent));
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            margin-bottom: 16px;
        }

        .floating-card h3 {
            font-size: 1.25rem;
            margin-bottom: 8px;
            color: var(--primary);
        }

        .floating-card p {
            font-size: 0.9rem;
            color: var(--gray);
            margin: 0;
        }

        /* Section Styling */
        section {
            padding: 120px 0;
        }

        .section-header {
            margin-bottom: 80px;
        }

        .section-label {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 0.9rem;
            font-weight: 600;
            color: var(--accent);
            text-transform: uppercase;
            letter-spacing: 0.1em;
            margin-bottom: 16px;
            display: block;
        }

        .section-title {
            font-size: 3.5rem;
            font-weight: 700;
            line-height: 1.1;
            color: var(--primary);
            letter-spacing: -0.02em;
        }

        /* Bento Grid Services */
        .services {
            background: white;
            position: relative;
        }

        .services::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--primary-light), transparent);
        }

        .bento-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            grid-template-rows: repeat(2, 300px);
            gap: 24px;
        }

        .bento-item {
            background: var(--light);
            border-radius: 32px;
            padding: 40px;
            position: relative;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            border: 1px solid rgba(20, 88, 103, 0.1);
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .bento-item:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 60px rgba(20, 88, 103, 0.15);
            border-color: var(--primary-light);
        }

        .bento-item.large {
            grid-column: span 2;
            background: linear-gradient(135deg, var(--primary), var(--primary-light));
            color: white;
        }

        .bento-item.large h3,
        .bento-item.large p {
            color: white;
        }

        .bento-item.tall {
            grid-row: span 2;
        }

        .bento-item h3 {
            font-size: 1.75rem;
            margin-bottom: 12px;
            color: var(--primary);
        }

        .bento-item p {
            font-size: 1rem;
            color: var(--gray);
            line-height: 1.6;
        }

        .bento-item.large p {
            color: rgba(255, 255, 255, 0.9);
        }

        .bento-link {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-weight: 600;
            color: var(--accent);
            margin-top: 24px;
            transition: gap 0.3s;
        }

        .bento-item:hover .bento-link {
            gap: 16px;
        }

        /* Asymmetric About Section */
        .about {
            position: relative;
        }

        .about-wrapper {
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 120px;
            align-items: center;
        }

        .about-image {
            position: relative;
        }

        .about-image-main {
            display: block;
            width: 100%;
            height: auto;
            object-fit: cover;
            border-radius: 40px;
            aspect-ratio: 3/4;
        }

        .about-content {
            padding: 40px 0;
        }

        .about-content h2 {
            font-size: 3rem;
            margin-bottom: 32px;
            color: var(--primary);
            line-height: 1.2;
        }

        .about-content p {
            font-size: 1.125rem;
            color: var(--gray);
            margin-bottom: 24px;
            line-height: 1.8;
        }

        .feature-list {
            list-style: none;
            margin-top: 40px;
        }

        .feature-list li {
            display: flex;
            align-items: center;
            gap: 16px;
            padding: 16px 0;
            font-size: 1.1rem;
            font-weight: 500;
            border-bottom: 1px solid rgba(20, 88, 103, 0.1);
        }

        .feature-list li::before {
            content: '✓';
            width: 28px;
            height: 28px;
            background: var(--accent-light);
            color: var(--accent);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 0.9rem;
            flex-shrink: 0;
        }

        /* Events List - Modern */
        .events {
            background: var(--dark);
            color: white;
            position: relative;
            overflow: hidden;
        }

        .events::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background:
                radial-gradient(circle at 20% 50%, rgba(194, 38, 96, 0.2) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(44, 139, 158, 0.2) 0%, transparent 50%);
            pointer-events: none;
        }

        .events .section-title {
            color: white;
        }

        .events-list {
            display: flex;
            flex-direction: column;
            gap: 0;
        }

        a.event-item {
            text-decoration: none;
            color: inherit;
        }

        .event-item {
            display: grid;
            grid-template-columns: 120px 1fr 200px 60px;
            gap: 40px;
            align-items: center;
            padding: 40px;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.3s;
            cursor: pointer;
        }

        .event-item:first-child {
            border-radius: 24px 24px 0 0;
        }

        .event-item:last-child {
            border-radius: 0 0 24px 24px;
        }

        .event-item:hover {
            background: rgba(255, 255, 255, 0.08);
            transform: translateX(10px);
        }

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

        .event-date span {
            display: block;
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.6);
            font-weight: 400;
        }

        .event-info h3 {
            font-size: 1.5rem;
            margin-bottom: 8px;
        }

        .event-info p {
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.95rem;
        }

        .event-category {
            display: inline-block;
            padding: 8px 20px;
            background: rgba(194, 38, 96, 0.2);
            color: var(--accent);
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 600;
        }

        .event-arrow {
            width: 48px;
            height: 48px;
            border: 2px solid rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
        }

        .event-item:hover .event-arrow {
            background: var(--accent);
            border-color: var(--accent);
            transform: rotate(-45deg);
        }

        .cta {
            padding: 160px 0;
            text-align: center;
            position: relative;
        }

        .cta-box {
            background: linear-gradient(135deg, var(--primary), var(--primary-light));
            border-radius: 48px;
            padding: 100px 60px;
            position: relative;
            overflow: hidden;
            box-shadow: 0 40px 120px rgba(20, 88, 103, 0.3);
        }

        .cta-box::before,
        .cta-box::after {
            content: '';
            position: absolute;
            width: 400px;
            height: 400px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
        }

        .cta-box::before {
            top: -200px;
            left: -200px;
        }

        .cta-box::after {
            bottom: -200px;
            right: -200px;
        }

        .cta h2 {
            font-size: 3.5rem;
            color: white;
            margin-bottom: 24px;
            position: relative;
        }

        .cta p {
            font-size: 1.25rem;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 48px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
            position: relative;
        }

        .btn-white {
            background: white;
            color: var(--primary);
            padding: 20px 48px;
            font-size: 1.1rem;
            position: relative;
            z-index: 1;
        }

        .btn-white:hover {
            transform: translateY(-3px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
        }

        /* Footer */
        footer {
            background: var(--dark);
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding: 80px 0 40px;
            color: rgba(255, 255, 255, 0.6);
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 80px;
            margin-bottom: 60px;
        }

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

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

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

        .footer-col ul {
            list-style: none;
        }

        .footer-col li {
            margin-bottom: 16px;
        }

        .footer-col a {
            color: rgba(255, 255, 255, 0.6);
            transition: color 0.3s;
        }

        .footer-col a:hover {
            color: var(--accent);
        }

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

        /* Responsive */
        @media (max-width: 1200px) {
            .hero h1 {
                font-size: 3.5rem;
            }

            .bento-grid {
                grid-template-columns: repeat(2, 1fr);
                grid-template-rows: auto;
            }

            .bento-item.large,
            .bento-item.tall {
                grid-column: span 1;
                grid-row: span 1;
            }

            .event-item {
                grid-template-columns: 1fr;
                gap: 20px;
                text-align: center;
            }

            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media (max-width: 768px) {
            .hero-grid {
                grid-template-columns: 1fr;
                gap: 60px;
            }

            .hero h1 {
                font-size: 2.5rem;
            }

            .hero-stats {
                flex-direction: column;
                gap: 24px;
            }

            .about-wrapper {
                grid-template-columns: 1fr;
                gap: 60px;
            }

            .bento-grid {
                grid-template-columns: 1fr;
            }

            .section-title {
                font-size: 2.5rem;
            }

            .nav-links {
                display: none;
            }
        }
        @media (max-width: 768px) {
    .logo-img {
        height: 40px;
        max-width: 150px;
    }
}