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

    /* Typography Variables */
    :root {
        /* Font Sizes */
        --font-size-h1: 48px;
        --font-size-h2: 32px;
        --font-size-h3: 24px;
        --font-size-h4: 20px;
        --font-size-h5: 18px;
        --font-size-h6: 16px;
        --font-size-large: 18px;
        --font-size-base: 16px;
        --font-size-small: 14px;
        --font-size-tiny: 13px;

        /* Font Weights */
        --font-weight-black: 900;
        --font-weight-bold: 800;
        --font-weight-semibold: 700;
        --font-weight-medium: 600;
        --font-weight-regular: 400;

        /* Line Heights */
        --line-height-tight: 1.2;
        --line-height-normal: 1.4;
        --line-height-relaxed: 1.6;

        /* Button Styles */
        --btn-padding: 14px 32px;
        --btn-border-radius: 4px;
        --btn-font-size: var(--font-size-base);
        --btn-font-weight: var(--font-weight-semibold);
        --btn-transition: all 0.3s ease;

        /* Card Styles */
        --card-bg: white;
        --card-border-radius: 12px;
        --card-padding: 24px;
        --card-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        --card-shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.15);

        /* Input Styles */
        --input-padding: 12px 16px;
        --input-border: 1px solid #ddd;
        --input-border-focus: 1px solid var(--primary-blue);
        --input-border-radius: 4px;
        --input-font-size: var(--font-size-base);
        --input-bg: white;

        /* Label Styles */
        --label-font-size: var(--font-size-small);
        --label-font-weight: var(--font-weight-semibold);
        --label-color: rgba(255, 255, 255, 0.8);
        --label-margin: 0 0 8px 0;

        /* Container Widths */
        --container-max-width: 1400px;
        --container-content: 1200px;
        --container-narrow: 1000px;
        --container-form: 1080px;
        --container-text: 600px;

        /* Section Spacing */
        --section-padding-y: 80px;
        --section-padding-x: 40px;
        --section-padding-mobile-y: 60px;
        --section-padding-mobile-x: 24px;

        /* Element Spacing */
        --spacing-xs: 8px;
        --spacing-sm: 16px;
        --spacing-md: 24px;
        --spacing-lg: 40px;
        --spacing-xl: 60px;
        --spacing-xxl: 80px;

        /* Grid Gaps */
        --grid-gap-sm: 20px;
        --grid-gap-md: 40px;
        --grid-gap-lg: 60px;

        /* Liquid Glass Theme */
        --bg-gradient: linear-gradient(135deg, #0f2027 0%, #203a43 50%, #2c5364 100%);
        --primary-blue: #003366;
        /* Ensuring this is defined */

        /* Enhanced Glass Component Styles */
        --glass-bg: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05));
        --glass-bg-hover: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1));
        --glass-border: 1px solid rgba(255, 255, 255, 0.3);
        --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
        --glass-backdrop: blur(40px) saturate(180%);

        /* Updated Card Variables for Glass */
        --card-bg: var(--glass-bg);
        --card-border-radius: 16px;
        --card-padding: 24px;
        --card-shadow: var(--glass-shadow);
        --card-border: var(--glass-border);
        --card-backdrop: var(--glass-backdrop);

        /* Input Glass Styles */
        --input-bg: rgba(0, 0, 0, 0.2);
        --input-border: 1px solid rgba(255, 255, 255, 0.1);
        --input-focus-border: 1px solid rgba(255, 255, 255, 0.5);

        /* Text Colors */
        --text-primary: #ffffff;
        --text-secondary: rgba(255, 255, 255, 0.7);
        --accent-teal: #20c997;
    }

    body {
        font-family: 'Montserrat', sans-serif;
        background: var(--bg-gradient);
        color: var(--text-primary);
        font-size: var(--font-size-base);
        line-height: var(--line-height-relaxed);
        min-height: 100vh;
        background-attachment: fixed;
    }

    /* Glass Helpers */
    .glass-panel {
        background: var(--glass-bg);
        border: var(--glass-border);
        box-shadow: var(--glass-shadow);
        backdrop-filter: var(--glass-backdrop);
        -webkit-backdrop-filter: var(--glass-backdrop);
        border-radius: var(--card-border-radius);
        padding: 24px;
    }

    /* Navigation */
    .navbar {
        background: rgba(0, 51, 102, 0.5);
        /* More transparent */
        backdrop-filter: blur(20px) saturate(180%);
        -webkit-backdrop-filter: blur(20px) saturate(180%);
        padding: 0;
        position: sticky;
        top: 0;
        z-index: 1000;
        box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
        border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    }

    .nav-container {
        max-width: var(--container-max-width);
        margin: 0 auto;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0 var(--section-padding-x);
        height: 70px;
    }

    .logo {
        font-size: var(--font-size-h3);
        font-weight: var(--font-weight-bold);
        color: white;
        text-transform: uppercase;
        letter-spacing: 2px;
        text-decoration: none;
    }

    .nav-links {
        display: flex;
        gap: 35px;
        list-style: none;
        align-items: center;
    }

    .nav-links a {
        color: white;
        text-decoration: none;
        font-size: var(--font-size-tiny);
        font-weight: var(--font-weight-medium);
        text-transform: uppercase;
        letter-spacing: 0.5px;
        transition: opacity 0.3s;
    }

    .nav-links a:hover {
        opacity: 0.7;
    }

    /* Hero Slider */
    .hero-slider {
        width: 100%;
        height: 600px;
        position: relative;
        overflow: hidden;
        margin-bottom: 100px;
        contain: layout style paint;
    }

    .hero-slide {
        position: absolute;
        width: 100%;
        height: 100%;
        opacity: 0;
        transition: opacity 1s ease-in-out;
    }

    .hero-slide.active {
        opacity: 1;
    }

    .hero-slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }

    .slider-dots {
        position: absolute;
        bottom: 30px;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        gap: 12px;
        z-index: 10;
    }

    .dot {
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.5);
        cursor: pointer;
        transition: background 0.3s;
    }

    .dot.active {
        background: white;
    }

    /* Event Card (New rule added) */
    .event-card {
        background: var(--card-bg);
        border-radius: var(--card-border-radius);
        padding: var(--card-padding);
        box-shadow: var(--card-shadow);
        backdrop-filter: var(--card-backdrop);
        -webkit-backdrop-filter: var(--card-backdrop);
        border: var(--card-border);
        transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, border-color 0.3s ease;
        cursor: pointer;
        contain: layout style paint;
    }

    .event-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
        background: var(--glass-bg-hover);
        border-color: rgba(255, 255, 255, 0.5);
    }


    /* Events Section */
    .events-container {
        max-width: var(--container-content);
        margin: 0 auto;
        padding: 0 var(--section-padding-x);
    }

    .event-row {
        background: var(--glass-bg);
        border-radius: 24px;
        padding: 20px;
        margin-bottom: 40px;
        display: grid;
        grid-template-columns: 350px 1fr 250px;
        gap: 20px;
        align-items: stretch;
        border: var(--glass-border);
        box-shadow: var(--glass-shadow);
        backdrop-filter: var(--glass-backdrop);
        -webkit-backdrop-filter: var(--glass-backdrop);
    }

    .event-image {
        background: rgba(74, 107, 117, 0.3);
        border-radius: 16px;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
        /* Glass Effect override if needed */
        backdrop-filter: blur(10px);
    }

    .event-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .event-info {
        background: rgba(0, 51, 102, 0.3);
        /* Slightly more transparent */
        border-radius: 16px;
        padding: 30px;
        color: white;
        border: 1px solid rgba(255, 255, 255, 0.15);
        backdrop-filter: blur(10px);
    }

    .event-title {
        font-size: var(--font-size-h2);
        font-weight: 800;
        text-transform: uppercase;
        margin-bottom: 8px;
        letter-spacing: 1px;
        line-height: 1.2;
    }

    .event-date {
        font-size: 16px;
        margin-bottom: 25px;
        opacity: 0.9;
    }

    .event-buttons {
        display: flex;
        gap: 15px;
        margin-bottom: 25px;
    }

    .event-btn {
        padding: 12px 28px;
        border-radius: 6px;
        border: none;
        font-size: 13px;
        font-weight: 700;
        text-transform: uppercase;
        cursor: pointer;
        transition: all 0.2s;
        text-decoration: none;
        display: inline-block;
    }

    .btn-primary {
        background: white;
        color: #003366;
        border: 1px solid transparent;
    }

    .btn-primary:hover {
        background: rgba(255, 255, 255, 0.9);
        box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
    }

    .btn-secondary {
        background: rgba(74, 107, 117, 0.6);
        color: white;
        border: 1px solid rgba(255, 255, 255, 0.2);
        backdrop-filter: blur(5px);
    }

    .btn-secondary:hover {
        background: rgba(74, 107, 117, 0.8);
        border-color: rgba(255, 255, 255, 0.4);
    }

    .countdown {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 12px;
    }

    .countdown-item {
        background: rgba(255, 255, 255, 0.1);
        color: white;
        padding: 15px 10px;
        border-radius: 8px;
        text-align: center;
        border: 1px solid rgba(255, 255, 255, 0.15);
        backdrop-filter: blur(5px);
    }

    .countdown-number {
        font-size: 24px;
        font-weight: 800;
        display: block;
    }

    .countdown-label {
        font-size: 11px;
        font-weight: 600;
        text-transform: uppercase;
        margin-top: 4px;
    }

    .event-icons {
        background: rgba(95, 179, 168, 0.3);
        border-radius: 16px;
        padding: 20px;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 15px;
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .icon-item {
        background: rgba(255, 255, 255, 0.85);
        /* Slightly translucent */
        border-radius: 50%;
        width: 100px;
        height: 100px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        font-size: 11px;
        font-weight: 700;
        text-transform: uppercase;
        color: #003366;
        backdrop-filter: blur(5px);
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        text-align: center;
    }

    .icon-item .icon {
        font-size: 32px;
        margin-bottom: 8px;
    }

    /* Footer */
    .footer {
        background: rgba(0, 51, 102, 0.4);
        backdrop-filter: blur(40px) saturate(180%);
        -webkit-backdrop-filter: blur(40px) saturate(180%);
        padding: var(--spacing-xl) var(--section-padding-x) var(--spacing-md);
        margin-top: var(--spacing-xl);
        border-top: 1px solid rgba(255, 255, 255, 0.15);
    }

    .footer-content {
        max-width: var(--container-content);
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        gap: var(--grid-gap-lg);
        margin-bottom: var(--spacing-lg);
    }

    .footer-section h3 {
        font-size: 16px;
        font-weight: 700;
        margin-bottom: 20px;
        text-transform: uppercase;
    }

    .footer-section p {
        font-size: 14px;
        line-height: 1.8;
        opacity: 0.9;
    }

    .social-links {
        display: flex;
        gap: 20px;
        margin-top: 15px;
    }

    .social-link {
        color: white;
        font-size: 24px;
        transition: opacity 0.3s;
        text-decoration: none;
    }

    .social-link:hover {
        opacity: 0.8;
        color: #ddd;
    }

    .footer-bottom {
        text-align: center;
        padding-top: 30px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        font-size: 13px;
        opacity: 0.7;
    }

    /* WhatsApp Float */
    .whatsapp-float {
        position: fixed;
        bottom: 30px;
        right: 30px;
        width: 60px;
        height: 60px;
        background: #25d366;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 32px;
        color: white;
        cursor: pointer;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
        transition: transform 0.3s;
        z-index: 1000;
        animation: whatsappPulse 2s infinite;
        will-change: transform;
        contain: layout style paint;
    }

    .whatsapp-float:hover {
        transform: scale(1.1);
    }

    @keyframes whatsappPulse {

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

        50% {
            transform: scale(1.1);
        }
    }

    /* Reduce animations for battery saving */
    @media (prefers-reduced-motion: reduce) {

        *,
        *::before,
        *::after {
            animation-duration: 0.01ms !important;
            animation-iteration-count: 1 !important;
            transition-duration: 0.01ms !important;
        }
    }

    /* Mobile Menu Overlay */
    .mobile-nav-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: auto;
        background: rgba(0, 51, 102, 0.95);
        backdrop-filter: blur(20px);
        z-index: 2000;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 100px;
        padding-bottom: 40px;
        transform: translateY(-100%);
        transition: transform 0.3s ease-in-out;
        opacity: 0;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
        border-bottom-left-radius: 24px;
        border-bottom-right-radius: 24px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .mobile-nav-overlay.active {
        transform: translateY(0);
        opacity: 1;
    }

    .mobile-nav-close {
        position: absolute;
        top: 25px;
        left: 25px;
        font-size: 28px;
        color: white;
        cursor: pointer;
    }

    .mobile-nav-logo {
        position: absolute;
        top: 25px;
        left: 50%;
        transform: translateX(-50%);
        font-size: 20px;
        font-weight: 800;
        color: white;
        text-transform: uppercase;
        letter-spacing: 2px;
    }

    .mobile-nav-links {
        list-style: none;
        text-align: center;
        padding: 0;
    }

    .mobile-nav-links li {
        margin: 25px 0;
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.3s ease;
    }

    .mobile-nav-overlay.active .mobile-nav-links li {
        opacity: 1;
        transform: translateY(0);
    }

    .mobile-nav-overlay.active .mobile-nav-links li:nth-child(1) {
        transition-delay: 0.1s;
    }

    .mobile-nav-overlay.active .mobile-nav-links li:nth-child(2) {
        transition-delay: 0.2s;
    }

    .mobile-nav-overlay.active .mobile-nav-links li:nth-child(3) {
        transition-delay: 0.3s;
    }

    .mobile-nav-overlay.active .mobile-nav-links li:nth-child(4) {
        transition-delay: 0.4s;
    }

    .mobile-nav-overlay.active .mobile-nav-links li:nth-child(5) {
        transition-delay: 0.5s;
    }

    .mobile-nav-overlay.active .mobile-nav-links li:nth-child(6) {
        transition-delay: 0.6s;
    }

    .mobile-nav-links a {
        color: white;
        font-size: 16px;
        text-decoration: none;
        font-weight: 600;
        letter-spacing: 1px;
        text-transform: uppercase;
        display: block;
    }

    .mobile-nav-links a:hover {
        color: #5fb3a8;
    }

    /* Mobile Menu Button (Hidden by default) */
    .mobile-menu-btn {
        display: none;
    }

    /* Responsive */
    @media (max-width: 968px) {
        :root {
            --font-size-h1: 32px;
            --font-size-h2: 24px;
            --font-size-h3: 20px;
            --font-size-h4: 18px;
            --font-size-h5: 16px;
            --font-size-h6: 14px;
        }

        .nav-container {
            padding: 0 20px;
        }

        .logo {
            font-size: var(--font-size-h4);
        }

        .nav-links {
            display: none;
        }

        /* Mobile Hero Slider */
        .hero-slider {
            height: 500px;
            margin-bottom: 60px;
        }

        /* Mobile Menu Icon */
        .mobile-menu-btn {
            display: block;
            font-size: 28px;
            color: white;
            cursor: pointer;
            order: -1;
        }

        /* Hero Slider */
        .hero-slider {
            height: 400px;
            margin-bottom: 60px;
        }

        /* Events Container */
        .events-container {
            padding: 0 20px;
        }

        /* Event Row - Vertical Stack */
        .event-row {
            grid-template-columns: 1fr;
            padding: 16px;
            background: var(--glass-bg);
            border-radius: 24px;
            gap: 16px;
            margin-bottom: 30px;
            border: var(--glass-border);
        }

        /* Event Image - Card Look */
        .event-image {
            border-radius: 16px;
            height: 300px;
            overflow: hidden;
        }

        /* Event Info - Card Look */
        .event-info {
            border-radius: 16px;
            padding: 24px;
        }

        .event-title {
            font-size: 24px;
        }

        .event-date {
            font-size: 14px;
        }

        .event-buttons {
            flex-direction: row;
            gap: 10px;
        }

        .event-btn {
            flex: 1;
            padding: 12px 20px;
            font-size: 12px;
        }

        .countdown {
            gap: 8px;
        }

        .countdown-item {
            padding: 12px 8px;
            border-radius: 12px;
        }

        .countdown-number {
            font-size: 20px;
        }

        .countdown-label {
            font-size: 10px;
        }

        /* Event Icons - Card Look */
        .event-icons {
            border-radius: 16px;
            padding: 24px;
            gap: 12px;
        }

        .icon-item {
            width: 100%;
            height: 90px;
            border-radius: 12px;
        }

        /* Footer */
        .footer {
            padding: var(--spacing-lg) 20px var(--spacing-md);
            margin-top: 30px;
        }

        .footer-content {
            grid-template-columns: 1fr;
            gap: 30px;
        }

        /* WhatsApp Float */
        .whatsapp-float {
            width: 55px;
            height: 55px;
            bottom: 20px;
            right: 20px;
            font-size: 28px;
        }
    }

    /* Page Hero - Unified Design */
    .page-hero {
        height: 50vh;
        min-height: 400px;
        position: relative;
        background: linear-gradient(rgba(0, 51, 102, 0.8), rgba(0, 51, 102, 0.6));
        background-size: cover;
        background-position: center;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        color: white;
    }

    .hero-content h1 {
        font-size: var(--font-size-h1);
        font-weight: 900;
        text-transform: uppercase;
        letter-spacing: 2px;
        margin-bottom: 15px;
    }

    .hero-content p {
        font-size: 18px;
        max-width: 600px;
        margin: 0 auto;
        opacity: 0.9;
    }

    /* Main Content Containers */
    .container {
        max-width: var(--container-narrow);
        margin: 0 auto;
        padding: var(--section-padding-y) var(--section-padding-x);
    }

    .content-section {
        background: var(--glass-bg);
        padding: var(--spacing-lg);
        border-radius: 12px;
        box-shadow: var(--glass-shadow);
        margin-bottom: var(--spacing-lg);
        border: var(--glass-border);
        backdrop-filter: var(--glass-backdrop);
        -webkit-backdrop-filter: var(--glass-backdrop);
    }

    .content-section h2 {
        font-size: 24px;
        font-weight: 800;
        color: white;
        /* Adapted for dark theme */
        margin-bottom: 20px;
        text-transform: uppercase;
        border-left: 4px solid #5fb3a8;
        /* accent-teal */
        padding-left: 15px;
    }

    .content-section p {
        margin-bottom: 15px;
        color: var(--text-primary);
        font-size: 16px;
        line-height: 1.8;
    }

    /* Values Grid */
    .values-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 20px;
        margin-top: 30px;
    }

    .value-card {
        background: var(--glass-bg);
        padding: 25px;
        border-radius: 8px;
        border-left: 4px solid var(--primary-blue);
        border: var(--glass-border);
        backdrop-filter: blur(10px);
    }

    .value-card h3 {
        font-size: 18px;
        color: white;
        margin-bottom: 10px;
        font-weight: 700;
    }

    .value-card p {
        font-size: 14px;
        margin-bottom: 0;
    }

    /* Founder/Team Section */
    .team-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 40px;
        margin-top: 40px;
    }

    .team-card {
        display: flex;
        align-items: center;
        gap: 30px;
        background: var(--glass-bg);
        padding: 30px;
        border-radius: 12px;
        border: var(--glass-border);
        backdrop-filter: var(--glass-backdrop);
    }

    .team-img {
        width: 150px;
        height: 150px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.1);
        object-fit: cover;
        flex-shrink: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
    }

    .team-info h3 {
        font-size: 22px;
        color: white;
        margin-bottom: 5px;
    }

    .team-info .role {
        font-size: 14px;
        font-weight: 700;
        color: #5fb3a8;
        text-transform: uppercase;
        margin-bottom: 15px;
        display: block;
    }

    /* Contact Page Styles */
    .contact-container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        max-width: 1200px;
        margin: 0 auto;
        padding: 60px 20px;
    }

    .contact-info,
    .contact-form-container {
        background: var(--glass-bg);
        padding: 40px;
        border-radius: 16px;
        border: var(--glass-border);
        backdrop-filter: var(--glass-backdrop);
        -webkit-backdrop-filter: var(--glass-backdrop);
    }

    .contact-item {
        display: flex;
        align-items: flex-start;
        gap: 20px;
        margin-bottom: 30px;
    }

    .contact-icon {
        width: 50px;
        height: 50px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 20px;
        color: #5fb3a8;
    }

    .form-group {
        margin-bottom: 20px;
    }

    .form-group label {
        display: block;
        margin-bottom: 8px;
        font-weight: 600;
        font-size: 14px;
    }

    .form-control {
        width: 100%;
        padding: 12px 16px;
        background: rgba(0, 0, 0, 0.2);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 4px;
        color: white;
        font-family: inherit;
        font-size: 16px;
    }

    .form-control:focus {
        outline: none;
        border-color: rgba(255, 255, 255, 0.5);
        background: rgba(0, 0, 0, 0.3);
    }

    /* Media Page Styles */
    .media-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 20px;
        padding: 40px;
    }

    .media-item {
        background: var(--glass-bg);
        border-radius: 12px;
        overflow: hidden;
        border: var(--glass-border);
    }

    /* Register Page Styles */
    .registration-container {
        max-width: 800px;
        margin: 0 auto;
        padding: 60px 20px;
    }

    .registration-card {
        background: var(--glass-bg);
        border-radius: 16px;
        padding: 40px;
        border: var(--glass-border);
        backdrop-filter: var(--glass-backdrop);
    }

    /* Details Page Styles */
    .details-hero {
        height: 50vh;
        min-height: 400px;
        position: relative;
        display: flex;
        align-items: flex-end;
        padding-bottom: 60px;
    }

    .details-content {
        background: var(--glass-bg);
        margin-top: -60px;
        border-radius: 24px 24px 0 0;
        padding: 60px 40px;
        position: relative;
        z-index: 10;
        backdrop-filter: var(--glass-backdrop);
        border-top: var(--glass-border);
    }

    /* Mobile Adjustments for new components */
    @media (max-width: 968px) {
        .team-card {
            flex-direction: column;
            text-align: center;
        }

        .contact-container {
            grid-template-columns: 1fr;
        }

        .details-content {
            padding: 40px 20px;
        }
    }

    /* Contact Page Specifics */
    .contact-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: var(--grid-gap-lg);
        align-items: start;
    }

    .info-card {
        background: var(--glass-bg);
        padding: 40px;
        border-radius: 12px;
        box-shadow: var(--glass-shadow);
        backdrop-filter: var(--glass-backdrop);
        -webkit-backdrop-filter: var(--glass-backdrop);
        border: var(--glass-border);
    }

    .info-card h2,
    .contact-form h2 {
        font-size: 28px;
        font-weight: 800;
        color: white;
        /* Adapted for dark glass */
        margin-bottom: 30px;
    }

    .info-item {
        display: flex;
        align-items: flex-start;
        margin-bottom: 30px;
    }

    .info-icon {
        width: 50px;
        height: 50px;
        flex-shrink: 0;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 20px;
        color: #5fb3a8;
        margin-right: 20px;
    }

    .info-content h3 {
        font-size: 16px;
        color: #5fb3a8;
        margin-bottom: 5px;
        font-weight: 700;
    }

    .info-content p {
        color: var(--text-primary);
        font-size: 15px;
        line-height: 1.6;
    }

    .info-content a {
        color: var(--text-primary);
        text-decoration: none;
        transition: color 0.3s;
    }

    .info-content a:hover {
        color: #5fb3a8;
    }

    .contact-form {
        background: var(--glass-bg);
        padding: 40px;
        border-radius: 12px;
        box-shadow: var(--glass-shadow);
        backdrop-filter: var(--glass-backdrop);
        -webkit-backdrop-filter: var(--glass-backdrop);
        border: var(--glass-border);
    }

    .form-label {
        display: block;
        margin-bottom: 8px;
        font-weight: 600;
        color: var(--text-primary);
        font-size: 14px;
    }

    .form-control {
        width: 100%;
        padding: 12px 15px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 6px;
        font-size: 15px;
        font-family: inherit;
        transition: border-color 0.3s;
        background: rgba(0, 0, 0, 0.2);
        color: white;
    }

    .form-control:focus {
        outline: none;
        border-color: #5fb3a8;
        background: rgba(0, 0, 0, 0.3);
    }

    .submit-btn {
        background: #003366;
        color: white;
        border: none;
        padding: 15px 30px;
        font-size: 15px;
        font-weight: 700;
        border-radius: 6px;
        cursor: pointer;
        text-transform: uppercase;
        letter-spacing: 1px;
        transition: background 0.3s;
        width: 100%;
        border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .submit-btn:hover {
        background: #5fb3a8;
    }

    .full-map {
        width: 100%;
        height: 450px;
        margin-top: 80px;
        border-radius: 12px;
        /* Adding radius for consistency */
        overflow: hidden;
        border: var(--glass-border);
    }

    .full-map iframe {
        width: 100%;
        height: 100%;
        border: 0;
        filter: grayscale(100%) invert(90%);
        /* Dark map */
        transition: filter 0.3s;
    }

    .full-map iframe:hover {
        filter: invert(0%);
    }

    @media (max-width: 968px) {
        .contact-grid {
            grid-template-columns: 1fr;
            gap: 40px;
        }
    }

    /* Media Page Specifics */
    .gallery-container {
        max-width: var(--container-max-width);
        margin: 0 auto;
        padding: 60px 40px;
    }

    .gallery-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 15px;
        margin-bottom: var(--spacing-lg);
    }

    .gallery-item {
        position: relative;
        overflow: hidden;
        border-radius: 12px;
        cursor: pointer;
        aspect-ratio: 1;
        background: rgba(0, 51, 102, 0.3);
        border: 1px solid rgba(255, 255, 255, 0.1);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .gallery-item:hover {
        transform: scale(1.02);
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
        z-index: 1;
        border-color: #fff;
    }

    .gallery-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.3s ease;
    }

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

    /* Lightbox */
    .lightbox {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.95);
        display: none;
        align-items: center;
        justify-content: center;
        z-index: 2000;
        opacity: 0;
        transition: opacity 0.3s ease;
        backdrop-filter: blur(10px);
    }

    .lightbox.active {
        display: flex;
        opacity: 1;
    }

    .lightbox-content {
        position: relative;
        max-width: 90%;
        max-height: 90%;
        animation: zoomIn 0.3s ease;
    }

    @keyframes zoomIn {
        from {
            transform: scale(0.8);
            opacity: 0;
        }

        to {
            transform: scale(1);
            opacity: 1;
        }
    }

    .lightbox-content img {
        max-width: 100%;
        max-height: 90vh;
        border-radius: 8px;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    }

    .lightbox-close {
        position: absolute;
        top: 20px;
        right: 20px;
        width: 44px;
        height: 44px;
        background: rgba(0, 0, 0, 0.6);
        border: 2px solid rgba(255, 255, 255, 0.8);
        border-radius: 50%;
        color: white;
        font-size: 24px;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
        z-index: 2002;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    }

    .lightbox-close:hover {
        background: rgba(0, 0, 0, 0.9);
        border-color: #fff;
        transform: scale(1.1);
    }

    .lightbox-nav {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 50px;
        height: 50px;
        background: rgba(0, 0, 0, 0.6);
        border: 2px solid rgba(255, 255, 255, 0.8);
        border-radius: 50%;
        color: white;
        font-size: 24px;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
        z-index: 2002;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    }

    .lightbox-nav:hover {
        background: rgba(0, 0, 0, 0.9);
        border-color: #fff;
        transform: translateY(-50%) scale(1.1);
    }

    .lightbox-prev {
        left: 20px;
    }

    .lightbox-next {
        right: 20px;
    }

    .lightbox-counter {
        position: absolute;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        color: white;
        font-size: 14px;
        font-weight: 600;
        background: rgba(0, 0, 0, 0.5);
        backdrop-filter: blur(10px);
        padding: 8px 16px;
        border-radius: 20px;
    }

    @media (max-width: 968px) {
        .gallery-container {
            padding: 40px 24px 20px;
        }

        .gallery-grid {
            grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
            gap: 4px;
        }

        .lightbox-nav {
            width: 36px;
            height: 36px;
            font-size: 16px;
        }

        .lightbox-prev {
            left: 10px;
        }

        .lightbox-next {
            right: 10px;
        }
    }

    /* Register Page Specifics */
    :root {
        /* Legacy Townscript Variables */
        --ts-primary: #003366;
        --ts-primary-hover: #002244;
        --ts-accent-yellow: #f9a825;
        --ts-accent-blue: #1e88e5;
        --ts-accent-coral: #e57373;
        --ts-text-dark: #1c1c1e;
        --ts-text-gray: #8e8e93;
        --ts-bg: #f2f2f7;
        --ts-border: rgba(60, 60, 67, 0.29);
    }

    /* 1. Header (Legacy override) */
    .bk-header {
        height: 64px;
        background: rgba(255, 255, 255, 0.05);
        backdrop-filter: blur(20px);
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0 24px;
        position: sticky;
        top: 0;
        z-index: 1000;
    }

    .header-left {
        display: flex;
        align-items: center;
        gap: 16px;
    }

    .back-btn {
        color: white;
        cursor: pointer;
        display: flex;
        align-items: center;
    }

    .header-event-title {
        font-size: 17px;
        font-weight: 600;
        color: var(--text-primary);
        /* Adapted */
    }

    .safe-badge {
        display: flex;
        align-items: center;
        gap: 6px;
        font-size: 12px;
        font-weight: 600;
        color: #34c759;
        background: rgba(52, 199, 89, 0.1);
        padding: 4px 12px;
        border-radius: 100px;
    }

    /* 2. Stepper */
    .stepper-container {
        background: rgba(255, 255, 255, 0.05);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding: 20px 0;
        margin-bottom: var(--spacing-lg);
        margin-top: 20px;
    }

    .stepper-wrapper {
        max-width: 600px;
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 12px;
    }

    .step-item {
        display: flex;
        align-items: center;
        gap: 8px;
        opacity: 0.5;
    }

    .step-item.active {
        opacity: 1;
    }

    .step-circle {
        width: 24px;
        height: 24px;
        border-radius: 50%;
        background: rgba(0, 0, 0, 0.1);
        color: #8e8e93;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 12px;
        font-weight: 600;
    }

    .step-item.active .step-circle {
        background: var(--ts-primary);
        color: white;
        box-shadow: 0 0 10px rgba(255, 107, 53, 0.4);
    }

    .step-label {
        font-size: 13px;
        font-weight: 600;
        letter-spacing: -0.01em;
    }

    .step-line {
        width: 40px;
        height: 2px;
        background: rgba(0, 0, 0, 0.1);
        border-radius: 2px;
    }

    /* 3. Main Layout */
    .main-container {
        max-width: 1080px;
        margin: 0 auto;
        padding: var(--spacing-lg) 24px var(--section-padding-y);
        display: grid;
        grid-template-columns: 1fr 340px;
        gap: 32px;
    }

    /* Left Column: Tickets */
    .section-header {
        margin-bottom: 24px;
    }

    .page-title {
        font-size: 28px;
        font-weight: 800;
        margin-bottom: 4px;
        letter-spacing: -0.02em;
    }

    .page-subtitle {
        color: rgba(255, 255, 255, 0.7);
        /* Adapted */
        font-size: 15px;
    }

    .calendar-icon-text {
        display: flex;
        align-items: center;
        gap: 6px;
        font-size: 14px;
        color: rgba(255, 255, 255, 0.9);
        /* Adapted */
        margin-top: 8px;
        font-weight: 500;
    }

    .ticket-list {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .ticket-card {
        background: var(--glass-bg);
        border: var(--glass-border);
        border-radius: 8px;
        padding: 24px;
        margin-bottom: 16px;
        transition: all 0.2s ease;
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        box-shadow: var(--glass-shadow);
        backdrop-filter: var(--glass-backdrop);
    }

    .ticket-card:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

    .t-info {
        flex: 1;
    }

    .t-name {
        font-size: 19px;
        font-weight: 700;
        color: white;
        margin-bottom: 6px;
    }

    .t-desc {
        font-size: 13px;
        color: rgba(255, 255, 255, 0.7);
        max-width: 440px;
        line-height: 1.5;
    }

    .t-price {
        font-size: 19px;
        font-weight: 700;
        color: white;
        margin-top: 14px;
    }

    .t-meta-tag {
        display: inline-block;
        background: rgba(255, 107, 53, 0.1);
        color: white;
        font-size: 11px;
        font-weight: 700;
        padding: 4px 10px;
        border-radius: 6px;
        margin-bottom: 8px;
        text-transform: uppercase;
    }

    .t-action {
        width: 120px;
        display: flex;
        flex-direction: column;
        align-items: flex-end;
    }

    .btn-add {
        background: transparent;
        border: 1px solid var(--ts-primary);
        color: white;
        padding: 8px 24px;
        border-radius: 20px;
        font-weight: 600;
        font-size: 14px;
        cursor: pointer;
        width: 100px;
        transition: all 0.2s;
        box-shadow: 0 2px 8px rgba(255, 107, 53, 0.1);
    }

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

    .qty-control {
        display: none;
        /* Hidden by default */
        align-items: center;
        background: rgba(0, 0, 0, 0.3);
        border-radius: 8px;
        overflow: hidden;
        width: 110px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }

    .qty-btn {
        background: transparent;
        border: none;
        width: 36px;
        height: 36px;
        color: white;
        font-weight: 600;
        font-size: 18px;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .qty-btn:hover {
        background: rgba(255, 255, 255, 0.1);
    }

    .qty-val {
        flex: 1;
        text-align: center;
        font-weight: 600;
        font-size: 15px;
        background: var(--ts-primary);
        color: white;
        height: 36px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* Right Column: Order Summary */
    .booking-sidebar {
        position: sticky;
        top: 100px;
    }

    .summary-card {
        background: var(--glass-bg);
        border: var(--glass-border);
        border-radius: 8px;
        box-shadow: var(--glass-shadow);
        padding: 24px;
        backdrop-filter: var(--glass-backdrop);
    }

    .summary-header {
        font-size: 13px;
        font-weight: 700;
        text-transform: uppercase;
        color: rgba(255, 255, 255, 0.6);
        margin-bottom: 24px;
        letter-spacing: 0.5px;
    }

    .summary-row {
        display: flex;
        justify-content: space-between;
        margin-bottom: 14px;
        font-size: 15px;
        color: rgba(255, 255, 255, 0.9);
    }

    .summary-total {
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        padding-top: 20px;
        margin-top: 20px;
        display: flex;
        justify-content: space-between;
        font-size: 20px;
        font-weight: 700;
        color: white;
    }

    .btn-proceed {
        background: var(--ts-primary);
        color: white;
        width: 100%;
        padding: 16px;
        border: none;
        border-radius: 14px;
        /* iOS style */
        font-weight: 600;
        font-size: 16px;
        margin-top: 24px;
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
        transition: transform 0.1s;
    }

    .btn-proceed:active {
        transform: scale(0.98);
    }

    .btn-proceed:disabled {
        background: #c7c7cc;
        cursor: not-allowed;
        color: #fff;
        box-shadow: none;
        opacity: 0.6;
    }

    @media (max-width: 968px) {
        .main-container {
            grid-template-columns: 1fr;
        }

        .booking-sidebar {
            position: fixed;
            bottom: 0px;
            left: 0;
            width: 100%;
            background: #0f2027;
            /* Fallback for glass */
            background: rgba(15, 32, 39, 0.95);
            backdrop-filter: blur(20px);
            padding: 20px;
            z-index: 100;
            top: auto;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
        }

        .summary-card {
            background: transparent;
            border: none;
            box-shadow: none;
            padding: 0;
        }

        .summary-header,
        .summary-row {
            display: none;
        }

        .summary-total {
            border: none;
            margin: 0;
            padding: 0;
            margin-bottom: 12px;
            font-size: 18px;
        }

        .btn-proceed {
            padding: 14px;
            margin: 0;
        }

        body {
            padding-bottom: 200px;
        }
    }

    /* Register Page Specifics Part 2 */
    .empty-cart-msg {
        text-align: center;
        padding: 32px 0;
        color: #8e8e93;
        font-size: 15px;
    }

    /* Discount Input */
    .discount-link {
        font-size: 14px;
        color: white;
        font-weight: 600;
        cursor: pointer;
        margin-top: 16px;
        display: inline-block;
    }

    /* Mobile Bottom Bar */
    .mobile-bar {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: rgba(0, 51, 102, 0.9);
        backdrop-filter: blur(20px);
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        padding: 12px 24px;
        box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
        display: none;
        align-items: center;
        justify-content: space-between;
        z-index: 2000;
    }

    @media (max-width: 768px) {
        .main-container {
            grid-template-columns: 1fr;
        }

        .booking-sidebar {
            display: none;
        }

        .mobile-bar {
            display: flex;
        }

        .stepper-label {
            display: none;
        }
    }

    /* Details & Payment Page Specifics */

    /* Form Cards */
    .form-card {
        background: var(--glass-bg);
        border: var(--glass-border);
        border-radius: 8px;
        margin-bottom: 16px;
        overflow: hidden;
        transition: box-shadow 0.2s;
        backdrop-filter: var(--glass-backdrop);
        box-shadow: var(--glass-shadow);
    }

    .form-card.active {
        border-color: var(--ts-primary);
        box-shadow: 0 0 0 1px var(--ts-primary);
    }

    .card-header {
        padding: 16px 24px;
        background: rgba(255, 255, 255, 0.05);
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        display: flex;
        justify-content: space-between;
        align-items: center;
        cursor: pointer;
    }

    .card-header .title {
        font-weight: 700;
        font-size: 15px;
        color: white;
    }

    .card-body {
        padding: 24px;
        display: none;
    }

    .form-card.active .card-body {
        display: block;
    }

    .form-card.completed .card-header {
        background: rgba(46, 125, 50, 0.2);
        color: #4caf50;
    }

    /* Inputs */
    .form-group {
        margin-bottom: 20px;
    }

    .form-label {
        display: block;
        font-size: 13px;
        font-weight: 700;
        color: rgba(255, 255, 255, 0.8);
        margin-bottom: 8px;
    }

    .form-input,
    .form-select {
        width: 100%;
        padding: 10px 12px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 4px;
        font-size: 14px;
        color: white;
        transition: border 0.2s;
        background: rgba(0, 0, 0, 0.2);
    }

    .form-input:focus,
    .form-select:focus {
        outline: none;
        border-color: var(--ts-primary);
    }

    .form-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .btn-save-next {
        background: var(--ts-primary);
        color: white;
        border: none;
        padding: 10px 24px;
        border-radius: 4px;
        font-weight: 700;
        font-size: 14px;
        cursor: pointer;
        float: right;
    }

    @media (max-width: 768px) {
        .form-row {
            grid-template-columns: 1fr;
        }
    }

    /* Payment Page Specifics */

    /* Payment Methods */
    .payment-card {
        background: var(--glass-bg);
        border: var(--glass-border);
        border-radius: 8px;
        overflow: hidden;
        margin-bottom: 16px;
        backdrop-filter: var(--glass-backdrop);
        box-shadow: var(--glass-shadow);
    }

    .p-option {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .p-option:last-child {
        border-bottom: none;
    }

    .p-header {
        padding: 16px 24px;
        cursor: pointer;
        display: flex;
        align-items: center;
        gap: 16px;
        background: transparent;
        transition: background 0.2s;
        color: white;
    }

    .p-header:hover {
        background: rgba(255, 255, 255, 0.05);
    }

    .p-header.active {
        background: rgba(255, 255, 255, 0.1);
        /* Subtle orange tint */
        border-left: 4px solid var(--ts-primary);
    }

    .p-icon {
        width: 24px;
        height: 24px;
        object-fit: contain;
    }

    .p-title {
        font-size: 15px;
        font-weight: 700;
        flex: 1;
    }

    .p-body {
        padding: 24px;
        display: none;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .p-header.active+.p-body {
        display: block;
    }

    /* UPI Specific */
    .upi-box {
        background: rgba(0, 0, 0, 0.2);
        border: 1px dashed rgba(255, 255, 255, 0.2);
        border-radius: 8px;
        padding: 24px;
        text-align: center;
    }

    .btn-pay-upi {
        background: #28a745;
        /* UPI Green or use Primary */
        background: var(--ts-primary);
        color: white;
        border: none;
        padding: 14px 32px;
        border-radius: 4px;
        font-weight: 700;
        font-size: 16px;
        cursor: pointer;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }

    /* Summary Details */
    .bill-row {
        display: flex;
        justify-content: space-between;
        margin-bottom: 12px;
        font-size: 14px;
        color: rgba(255, 255, 255, 0.9);
    }

    .bill-divider {
        height: 1px;
        background: #eee;
        margin: 16px 0;
    }

    .total-row {
        display: flex;
        justify-content: space-between;
        font-size: 18px;
        font-weight: 800;
        color: white;
    }

    /* Page Header (Privacy/Terms) */
    .page-header {
        padding: var(--section-padding-y) var(--section-padding-x) var(--spacing-lg);
        text-align: center;
        background: transparent;
    }

    .page-header h1 {
        font-size: var(--font-size-h1);
        font-weight: 900;
        color: white;
        text-transform: uppercase;
        letter-spacing: 2px;
        margin-bottom: 20px;
    }

    /* Event Detail Page Specifics */

    .hero {
        padding: 120px 20px 80px;
        background: transparent;
        text-align: center;
        color: white;
    }

    .hero-content h1 {
        font-size: 48px;
        font-weight: 900;
        text-transform: uppercase;
        margin-bottom: 10px;
        letter-spacing: 2px;
    }

    .hero-content .date {
        font-size: 24px;
        font-weight: 600;
        color: var(--accent-teal);
        margin-bottom: 30px;
        letter-spacing: 1px;
    }

    .hero-btn {
        background: linear-gradient(135deg, var(--primary-blue), #004d99);
        color: white;
        padding: 16px 40px;
        text-decoration: none;
        border-radius: 50px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1px;
        transition: transform 0.3s, box-shadow 0.3s;
        display: inline-block;
        box-shadow: 0 4px 15px rgba(0, 51, 102, 0.4);
    }

    .hero-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(0, 51, 102, 0.6);
    }



    .section-title {
        font-size: 28px;
        font-weight: 800;
        color: white;
        text-transform: uppercase;
        margin-bottom: 30px;
        border-left: 5px solid var(--accent-teal);
        padding-left: 15px;
    }

    /* About & Map Grid */
    .about-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        margin-bottom: 60px;
    }

    .about-text p {
        margin-bottom: 15px;
        color: var(--text-primary);
        font-size: 16px;
        line-height: 1.8;
    }

    .map-container {
        border-radius: 12px;
        overflow: hidden;
        box-shadow: var(--glass-shadow);
        height: 100%;
        min-height: 300px;
        border: var(--glass-border);
    }

    .map-container iframe {
        width: 100%;
        height: 100%;
        border: 0;
    }

    /* Distances Table */
    .distances-table {
        width: 100%;
        border-collapse: collapse;
        background: var(--glass-bg);
        border-radius: 12px;
        overflow: hidden;
        box-shadow: var(--glass-shadow);
        margin-bottom: 60px;
        border: var(--glass-border);
        backdrop-filter: var(--glass-backdrop);
    }

    .distances-table th {
        background: var(--primary-blue);
        color: white;
        text-align: left;
        padding: 20px;
        font-weight: 700;
        text-transform: uppercase;
        font-size: 14px;
    }

    .distances-table td {
        padding: 15px 20px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        color: var(--text-primary);
    }

    .distances-table tr:last-child td {
        border-bottom: none;
    }

    /* Routes Grid */
    .routes-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
        margin-bottom: 60px;
    }

    .route-card {
        background: var(--glass-bg);
        padding: 30px;
        border-radius: 12px;
        box-shadow: var(--glass-shadow);
        text-align: center;
        transition: transform 0.3s;
        border: var(--glass-border);
        backdrop-filter: var(--glass-backdrop);
    }

    .route-card:hover {
        transform: translateY(-5px);
    }

    .route-icon {
        font-size: 40px;
        color: var(--accent-teal);
        margin-bottom: 15px;
    }

    .route-card h4 {
        color: white;
        font-weight: 700;
        text-transform: uppercase;
    }

    .dist-cat {
        font-weight: 700;
        color: var(--accent-teal);
    }

    /* Schedule */
    .schedule-list {
        background: var(--glass-bg);
        padding: 30px;
        border-radius: 12px;
        box-shadow: var(--glass-shadow);
        border: var(--glass-border);
        backdrop-filter: var(--glass-backdrop);
    }

    .schedule-item {
        display: flex;
        justify-content: space-between;
        padding: 15px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        color: var(--text-primary);
    }

    .schedule-item:last-child {
        border-bottom: none;
    }

    .time {
        font-weight: 700;
        color: var(--accent-teal);
    }

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

        .hero-content h1 {
            font-size: 32px;
        }
    }