        /* Custom Fonts */        @font-face {
            font-family: 'PlayfairDisplay';
            src: url('./static/fonts/PlayfairDisplay-VariableFont_wght.ttf') format('truetype'),
                 url('./static/fonts/PlayfairDisplay-Italic-VariableFont_wght.ttf') format('truetype');
            font-weight: normal;
            font-style: normal;
            font-display: swap;
        }
        @font-face {
            font-family: 'SourceSans3';
            src: url('./static/fonts/SourceSans3-VariableFont_wght.ttf') format('truetype'),
                 url('./static/fonts/SourceSans3-Italic-VariableFont_wght.ttf') format('truetype');
            font-weight: normal;
            font-style: normal;
            font-display: swap;
        }

        /* Reset and Base Styles */
        :root {
            /* Color Palette */
            --midnight: #F2EFE9;     /* Main background (Very light off-white/beige) */
            --arctic: #262626;       /* Primary text color (Dark gray) */
            --apres-ski: #8C8C8C;    /* Muted/secondary text (Mid gray) */
            --slopes: #BFBFBD;       /* Lighter gray for subtle elements/text/borders (Light-mid gray) */
            --mountainside: #E9E5DC; /* Secondary light background / Sections (Light beige/gray) */
            --mountainside-rgb: 233, 229, 220; /* RGB for --mountainside */
            
            /* Accent colors */
            --glow-color: #002366;       /* Primary accent - US Navy Blue */
            --glow-color-rgb: 0, 35, 102;  /* RGB version for US Navy Blue */
            --accent-color: #8C8C8C;     /* Using a new palette gray for other accents/text */
            --hover-color: #001a4d;      /* Darker Navy Blue for hover */
            --highlight-color: #F5A623;  /* Warm accent for highlights */

            /* Helper variables */
            --border-color-light: #BFBFBD; /* Using --slopes */
            --card-bg-light: #FFFFFF; /* Pure white for cards */
            --card-bg-subtle-light: #F2EFE9; /* For less prominent cards */
            --shadow-color-light: rgba(38, 38, 38, 0.08); /* Subtle shadow using --arctic as base */
            --shadow-color-medium: rgba(38, 38, 38, 0.15); /* Medium shadow */
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            cursor: none; /* Hide default cursor */
        }

        html {
            scroll-behavior: smooth;
        }
        
        body {
            font-family: 'Inter', system-ui, -apple-system, sans-serif;
            background-color: var(--midnight);
            color: var(--arctic);
            line-height: 1.6;
            overflow-x: hidden;
            position: relative;
        }
        
        /* Custom Cursor */
        .cursor {
            width: 20px;
            height: 20px;
            border: 2px solid var(--glow-color);
            border-radius: 50%;
            position: fixed;
            pointer-events: none;
            z-index: 9999; 
            mix-blend-mode: difference;
            transform: translate(-50%, -50%);
            transition: width 0.2s, height 0.2s, border-color 0.2s;
        }
        
        .cursor-follower {
            width: 40px;
            height: 40px;
            background: rgba(var(--glow-color-rgb), 0.1);
            border-radius: 50%;
            position: fixed;
            transform: translate(-50%, -50%);
            pointer-events: none;
            z-index: 9998;
            transition: transform 0.15s ease-out, background 0.3s ease;
        }
        
        .cursor-hover {
            width: 30px;
            height: 30px;
            border-color: var(--highlight-color);
        }
        
        .follower-hover {
            transform: translate(-50%, -50%) scale(1.5);
            background: rgba(var(--glow-color-rgb), 0.2);
        }
        
        /* Background Effects */
        .gradient-bg {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            opacity: 0.6;
            background: linear-gradient(
                135deg,
                var(--midnight) 0%,
                var(--mountainside) 50%,
                var(--midnight) 100%
            );
            background-size: 400% 400%;
            animation: gradientAnimation 15s ease infinite;
        }
        
        .noise-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIzMDAiIGhlaWdodD0iMzAwIj48ZmlsdGVyIGlkPSJub2lzZSIgeD0iMCIgeT0iMCIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSI+PGZlVHVyYnVsZW5jZSB0eXBlPSJmcmFjdGFsTm9pc2UiIGJhc2VGcmVxdWVuY3k9IjAuNjUiIG51bU9jdGF2ZXM9IjMiIHN0aXRjaFRpbGVzPSJzdGl0Y2giIHJlc3VsdD0ibm9pc2UiLz48ZmVDb2xvck1hdHJpeCB0eXBlPSJtYXRyaXgiIHZhbHVlcz0iMC4xIDAgMCAwIDAgMCAwLjEgMCAwIDAgMCAwIDAuMSAwIDAgMCAwIDAgMC4yIDAiLz48L2ZpbHRlcj48cmVjdCB3aWR0aD0iMTAwJSIgaGVpZHQ9IjEwMCUiIGZpbHRlcj0idXJsKCNub2lzZSkiLz48L3N2Zz4');
            opacity: 0.05;
            z-index: -1;
            pointer-events: none;
        }
        
        .particles {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            pointer-events: none;
        }

        /* Header Styles */
        header {
            padding: 1rem;
            background-color: rgba(242, 239, 233, 0.85);
            backdrop-filter: blur(10px);
            position: fixed;
            width: 100%;
            z-index: 100;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px var(--shadow-color-light);
        }
        
        header.scrolled {
            padding: 0.7rem 1rem;
            background-color: rgba(242, 239, 233, 0.95);
            box-shadow: 0 8px 20px var(--shadow-color-medium);
        }
        
        .main-nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1rem;
        }
        
        .logo a {
            color: var(--arctic);
            font-size: 1.8rem;
            font-weight: 700;
            text-decoration: none;
            letter-spacing: 1px;
            text-transform: uppercase;
            position: relative;
            display: block;
            overflow: hidden;
        }
        
        .logo a::before {
            content: '';
            position: absolute;
            width: 100%;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: var(--glow-color);
            transform: translateX(-100%);
            transition: all 0.3s ease;
        }
        
        .logo a:hover::before {
            transform: translateX(0);
        }
        
        .nav-links {
            display: flex;
            list-style: none;
            gap: 1.5rem;
        }
        
        .nav-links li a {
            color: var(--apres-ski);
            text-decoration: none;
            font-weight: 500;
            padding: 0.5rem 1rem;
            position: relative;
            transition: color 0.3s ease;
        }
        
        .nav-links li a::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 50%;
            width: 0;
            height: 2px;
            background-color: var(--glow-color);
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }
        
        .nav-links li a:hover, .nav-links li a.active {
            color: var(--glow-color);
        }
        
        .nav-links li a:hover::after, .nav-links li a.active::after {
            width: 100%;
        }
        
        .profile-icon a {
            color: var(--apres-ski);
            font-size: 1.5rem;
            transition: color 0.3s ease, transform 0.3s ease;
            display: flex;
            align-items: center;
        }
        .profile-icon a i {
            font-size: 2rem;
            color: var(--apres-ski);
            transition: color 0.3s ease;
        }
        
        .profile-icon a:hover {
            color: var(--glow-color);
            transform: scale(1.1);
        }
        .profile-icon a:hover i {
            color: var(--glow-color);
        }
        /* Profile Dropdown Menu */
        .profile-icon {
            position: relative; /* For dropdown positioning */
        }

        .profile-dropdown-menu {
            display: none; /* Hidden by default */
            position: absolute;
            top: calc(100% + 10px); /* Position below the icon with a small gap */
            right: 0;
            background-color: var(--card-bg-light);
            border: 1px solid var(--border-color-light);
            border-radius: 8px;
            box-shadow: 0 8px 16px var(--shadow-color-light);
            z-index: 101; 
            min-width: 220px; 
            padding: 0.5rem 0;
        }

        .profile-icon .profile-dropdown-menu.active { /* Show when active class is present (for JS click) */
            display: block;
        }

        .profile-dropdown-menu a {
            display: flex; /* Use flex for icon alignment */
            align-items: center;
            padding: 0.85rem 1.5rem;
            color: var(--arctic);
            text-decoration: none;
            font-size: 0.95rem;
            font-weight: 500;
            white-space: nowrap;
            transition: none; /* Removed hover/click transition effects */
        }

        .profile-dropdown-menu a:hover {
            /* Removed background-color and color change on hover */
            /* Links will retain their default appearance */
        }

        .profile-dropdown-menu a i {
            margin-right: 12px;
            font-size: 1rem;
            width: 20px;
            text-align: center;
            color: var(--apres-ski);
            transition: none; /* Removed icon color transition on hover */
        }

        .profile-dropdown-menu a:hover i {
            /* Removed icon color change on hover */
        }

        .profile-dropdown-menu a#logoutBtnDropdown {
            color: #e74c3c; /* Distinct color for logout */
        }

        .profile-dropdown-menu a#logoutBtnDropdown:hover {
            /* Removed background-color and color change on hover for logout */
            /* Logout button will retain its default appearance on hover */
        }
        .profile-dropdown-menu a#logoutBtnDropdown:hover i {
            /* Removed icon color change on hover for logout */        }

        /* Hamburger Menu (existing styles) */
        #hamburger-menu {
            display: none;
            flex-direction: column;
            justify-content: space-around;
            width: 2rem;
            height: 2rem;
            background: transparent;
            border: none;
            cursor: pointer;
            padding: 0;
            z-index: 10;
        }

        #hamburger-menu span {
            width: 2rem;
            height: 0.25rem;
            background: var(--arctic);
            border-radius: 10px;
            transition: all 0.3s linear;
            position: relative;
            transform-origin: 1px;
        }
        
        #hamburger-menu.open span:nth-child(1) {
            transform: rotate(45deg);
        }
        
        #hamburger-menu.open span:nth-child(2) {
            opacity: 0;
        }
        
        #hamburger-menu.open span:nth-child(3) {
            transform: rotate(-45deg);
        }

        /* Main Content */
        main {
            padding-top: 5rem;
        }

        /* Section Styling */
        .section-light, .section-alt, .faq-section {
            padding: 6rem 2rem;
            position: relative;
            overflow: hidden;
        }
        .section-light {
            background-color: var(--midnight);
        }
        .section-alt {
            background-color: var(--mountainside);
        }

        .dashboard-container {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }        /* Typography */
        h1, h2, h3, h4, h5, h6 {
            color: var(--arctic);
            font-weight: 700;
            font-family: 'PlayfairDisplay', 'Inter', system-ui, -apple-system, sans-serif;
        }
        h1 { font-size: 3rem; margin-bottom: 1.5rem; line-height: 1.2; }
        h2 { font-size: 2.5rem; margin-bottom: 1rem; text-align: center;}
        h3 { font-size: 1.5rem; margin-bottom: 0.75rem; }
        h4 { font-size: 1.2rem; margin-bottom: 0.5rem; }
        h5 { font-size: 1rem; margin-bottom: 0.5rem; }
        h6 { font-size: 0.85rem; margin-bottom: 0.5rem; }        /* Secondary text: p, span, small, label, li */
        p, span, small, label, li {
            font-family: 'SourceSans3', 'Inter', system-ui, -apple-system, sans-serif;
        }
        p { color: var(--apres-ski); margin-bottom: 1rem; }

        /* Buttons */
        .btn-primary, .btn-outline {
            background: transparent;
            color: var(--glow-color);
            border: 2px solid var(--glow-color);
            border-radius: 4px;
            padding: .8rem 2rem;
            font-weight: 600;
            font-size: 1rem;
            text-decoration: none;
            display: inline-block;
            position: relative;
            overflow: hidden;
            transition: all 0.3s ease;
            z-index: 1;
            letter-spacing: 1px;
            text-align: center;
        }
        
        .btn-primary::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 0;
            height: 100%;
            background: var(--glow-color);
            transition: all 0.3s ease;
            z-index: -1;
        }
        
        .btn-primary:hover {
            color: var(--midnight);
        }
        
        .btn-primary:hover::before {
            width: 100%;
        }

        .btn-outline {
            color: var(--glow-color);
            background-color: transparent;
        }
        .btn-outline:hover {
            background-color: var(--glow-color);
            color: var(--midnight);
        }
        
        .btn-primary svg, .btn-primary i,
        .btn-outline svg, .btn-outline i {
            margin-left: 8px;
            transition: transform 0.3s ease;
        }
        
        .btn-primary:hover svg, .btn-primary:hover i,
        .btn-outline:hover svg, .btn-outline:hover i {
            transform: translateX(5px);
        }

        .btn-row {
            display: flex;
            gap: 1.2rem;
            margin-top: 2rem;
            justify-content: center;
        }

        /* Hero Section */
        .hero-section-old { /* Renaming old hero to avoid conflict, will be removed */
            min-height: 85vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 6rem 2rem;
            text-align: center;
            background: linear-gradient(180deg, var(--midnight) 0%, var(--mountainside) 70%, var(--midnight) 100%);
            position: relative;
            overflow: hidden;
        }
        
        .hero-graphic-old {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
            opacity: 0.1;
            background-image: url('/api/placeholder/1200/800');
            background-size: cover;
            background-position: center;
            background-blend-mode: overlay;
            pointer-events: none;
        }
        
        .hero-circles-old {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
            pointer-events: none;
        }
        
        .hero-circle-old {
            position: absolute;
            border-radius: 50%;
            border: 2px solid rgba(var(--glow-color-rgb), 0.1);
            transform: translate(-50%, -50%);
            animation: pulse 6s ease-in-out infinite alternate;
        }
        
        .hero-circle-old:nth-child(1) {
            width: 250px;
            height: 250px;
            top: 30%;
            left: 10%;
            animation-delay: 0s;
        }
        
        .hero-circle-old:nth-child(2) {
            width: 400px;
            height: 400px;
            top: 65%;
            left: 80%;
            animation-delay: 1s;
        }
        
        .hero-circle-old:nth-child(3) {
            width: 180px;
            height: 180px;
            top: 20%;
            left: 75%;
            animation-delay: 2s;
        }
        
        .hero-circle-old:nth-child(4) {
            width: 300px;
            height: 300px;
            top: 80%;
            left: 30%;
            animation-delay: 1.5s;
        }
        
        .hero-section-old .hero-text-old h1 {
          position: relative;
            z-index: 2;
        }
        
        .hero-section .hero-text h1 {
            font-size: 3.8rem;
            font-weight: 800;
            opacity: 0;
            transform: translateY(20px);
            animation: fadeInUp 1s ease 0.2s forwards;
            /* background: linear-gradient(to right, var(--arctic), var(--glow-color)); */
            /* -webkit-background-clip: text; */
            /* -webkit-text-fill-color: transparent; */
            /* background-clip: text; */
            /* text-fill-color: transparent; */
            color: var(--arctic); /* Simpler color for now */
        }

        .hero-section-old .hero-text-old p {
            font-size: 1.3rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
            opacity: 0;
            transform: translateY(20px);
            animation: fadeInUp 1s ease 0.5s forwards;
        }
        
        .hero-section-old .btn-row {
            opacity: 0;
            transform: translateY(20px);
            animation: fadeInUp 1s ease 0.8s forwards;
        }
        
        .hero-highlight-old {
          color: var(--glow-color);
            font-weight: 700;
        }

        /* New Hero Section Styles (from about.html, adapted) */
        .hero-section { /* Replaces .about-hero-stats */
          position: relative;
          min-height: 100vh;
          display: flex;
          flex-direction: column;
          justify-content: flex-start;
          align-items: center;
          padding: 4rem 2rem 1rem; /* Top padding now controls space below main's top padding, reduced bottom padding slightly */
          overflow: hidden;
          background: linear-gradient(180deg, var(--midnight) 0%, var(--mountainside) 70%, var(--midnight) 100%);
        }

        .hero-main-row { /* Replaces .about-hero-row */
            display: flex;
            align-items: center;
            justify-content: space-between;
            max-width: 1200px;
            width: 100%;
            margin: 0 auto;
            gap: 3rem;
            perspective: 1000px;
        }

        .hero-content-left { /* Replaces .about-hero-left */
            flex: 1.2;
            position: relative;
            z-index: 2;
        }

        .hero-title-wrapper { /* New wrapper for the reveal animation */
            display: inline-block; /* So it only takes the width of the h1 */
            overflow: hidden; /* Essential for clip-path animation */
            animation: reveal 0.8s ease 0.2s forwards;
            opacity: 0; /* Start hidden, reveal animation will make it visible */
        }

        .hero-content-left .hero-glitch-text { /* Replaces .about-hero-left h1 and .glitch-text */
            font-size: 3.5rem; /* from about.html h1 */
            font-weight: 800; /* from about.html h1 */
            margin-bottom: 1.5rem; 
            line-height: 1.1;
            color: var(--arctic);
            position: relative;
            display: inline-block;

            
            /* Glitch text specific styles from about.html */
            text-shadow: 0 0 5px rgba(var(--glow-color-rgb), 0.3);
            animation: textGlitch 3s infinite linear alternate;
            animation-play-state: paused;
            background-color: rgba(var(--mountainside-rgb), 0.7);
            padding: 10px 20px;
            border-radius: 8px;
            backdrop-filter: blur(3px);
        }
        .hero-content-left .hero-glitch-text:hover {
            animation-play-state: running;
        }

        .hero-content-left > p {
            color: var(--apres-ski);
            font-size: 1.2rem;
            margin-bottom: 2rem;
            max-width: 600px;
            opacity: 0; /* Start hidden */
            animation: fadeIn 0.7s ease 0.8s forwards; /* Faster, starts after title reveal begins */
            text-shadow: 0 1px 2px rgba(0,0,0,0.05);
        }

        .hero-btn-row { /* Replaces .btn-row from about.html */
            display: flex;
            gap: 1.2rem;
            opacity: 0; /* Start hidden */
            animation: fadeIn 0.7s ease 1s forwards; /* Faster */
        }

        .hero-image-right { /* Replaces .about-hero-right */
            flex: 1;
            opacity: 0;
            opacity: 0; /* Start hidden */
            animation: fadeIn 0.7s ease 1.2s forwards, float 6s ease-in-out infinite; /* Faster */
            position: relative;
        }
        .hero-image-right img {
            width: 100%;
            max-width: 450px;
            border-radius: 8px;
            transform-style: preserve-3d;
            transform: perspective(1000px) rotateY(-15deg);
            transition: transform 0.5s ease;
            box-shadow:
                0 10px 30px var(--shadow-color-light),
                0 0 0 1px var(--border-color-light);
            filter: contrast(1.05);
        }
        .hero-image-right:hover img {
            transform: perspective(1000px) rotateY(0deg) scale(1.05);
        }
        .hero-image-right::before { /* Sheen effect from about.html */
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(var(--glow-color-rgb), 0.05) 0%, transparent 70%);
            border-radius: 8px;
            pointer-events: none;
        }

        .hero-stats-row { /* Replaces .about-stats-row */
            display: flex;
            justify-content: space-around; /* Changed from space-between for better centering if fewer items */
            align-items: stretch;
            max-width: 1000px; /* Adjusted max-width */
            width: 100%;
            margin-top: 4rem;
            gap: 2rem;
            position: relative;
            opacity: 0; /* Start hidden */
            animation: fadeIn 0.7s ease 1.5s forwards; /* Faster */
        }

        .hero-stat-item { /* Replaces .stat-item */
            flex: 1;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 1.5rem; /* Slightly reduced padding */
            background: var(--card-bg-subtle-light);
            border: 1px solid var(--border-color-light);
            border-radius: 8px;
            backdrop-filter: blur(5px);
            transform: translateY(50px);
            opacity: 0;
            animation: slideUp 0.8s ease forwards;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            min-width: 200px; /* Ensure items don't get too small */
        }
        .hero-stat-item:nth-child(1) { animation-delay: 1.6s; } /* Adjusted delays */
        .hero-stat-item:nth-child(2) { animation-delay: 1.8s; }
        .hero-stat-item:nth-child(3) { animation-delay: 2.0s; }

        .hero-stat-item::before { /* Sheen effect from about.html */
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(
                to bottom right,
                rgba(var(--glow-color-rgb), 0.1),
                rgba(var(--glow-color-rgb), 0.03),
                transparent
            );
            transform: rotate(45deg);
            z-index: -1;
            transition: all 0.6s ease;
        }
        .hero-stat-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px var(--shadow-color-light);
            border-color: var(--glow-color);
        }
        .hero-stat-item:hover::before {
            transform: rotate(45deg) translateX(10%);
        }

        .hero-stat-number { /* Replaces .stat-number */
            font-size: 2.5rem; /* Slightly reduced */
            font-weight: 800;
            color: var(--glow-color);
            margin-bottom: 0.5rem;
            position: relative;
            display: inline-block;
            text-shadow: 0 0 10px rgba(var(--glow-color-rgb), 0.2);
            letter-spacing: -1px;
        }

        .hero-stat-label { /* Replaces .stat-label */
            font-size: 1rem; /* Slightly reduced */
            color: var(--apres-ski);
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            text-align: center; /* Ensure label is centered */
        }

        /* Event Image/Banner */
        .event-banner {
            position: relative;
            text-align: center;
            margin-top: -6rem;
            z-index: 3;
            padding: 0 2rem; /* Ensure banner doesn't touch edges on small screens */
        }

        .event-banner-image-wrapper {
            max-width: 85%; /* Control the size of the banner image */
            margin: 0 auto; /* Center the wrapper */
            border-radius: 16px;
            overflow: hidden; /* Crucial for image zoom effect within rounded corners */
            box-shadow: 0 20px 40px var(--shadow-color-medium);
            opacity: 0;
            transform: translateY(30px);
            /* Apply transition to the wrapper for opacity, transform, and shadow */
            transition: opacity 1s ease, transform 1s ease, box-shadow 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .event-banner.in-view .event-banner-image-wrapper {
            opacity: 1;
            transform: translateY(0);
        }

        .event-banner img {
            display: block; /* Removes extra space below image */
            width: 100%; /* Image fills the wrapper */
            height: auto;
            transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94); /* Smooth zoom for image */
        }

        .event-banner-image-wrapper:hover {
            box-shadow: 0 25px 55px var(--shadow-color-medium); /* Enhanced shadow on hover */
        }

        .event-banner-image-wrapper:hover img {
            transform: scale(1.05); /* Zoom image on hover */
        }

        /* Why EventHub Section */
        .why-title {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 3rem;
            position: relative;
            opacity: 0;
            transform: translateY(20px);
        }
        
        .why-title.in-view {
          animation-name: slideUp; /* Changed from fadeInUp */
          animation-duration: 0.8s; animation-timing-function: ease; animation-fill-mode: forwards; animation-delay: 0.1s; /* Added slight delay */        }
        
        .why-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 3px;
            background: linear-gradient(to right, transparent, var(--glow-color), transparent);
        }

        .features-row {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            perspective: 1000px; /* For 3D tilt effect on children */
            gap: 2rem;
        }
        .feature-box {
            background: var(--card-bg-light);
            border: 1px solid var(--border-color-light);
            border-radius: 12px;
            padding: 2rem;
            text-align: center;
            transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), 
                        box-shadow 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), 
                        border-color 0.3s ease, background-color 0.3s ease;
            opacity: 0;
            transform: translateY(30px);
            box-shadow: 0 10px 20px var(--shadow-color-light);
            position: relative; /* For pseudo-element positioning */
            overflow: hidden;   /* To contain the pseudo-element */
        }
        .feature-box.in-view {
            /* Base animation properties, delay will be overridden by nth-child */
            animation-name: slideUp; /* Changed from fadeInUp */
            animation-duration: 0.8s;
            animation-timing-function: ease;
            animation-fill-mode: forwards;
        }
        .features-row .feature-box:nth-child(1).in-view {
            animation-delay: 0.3s; /* Staggered delay */
        }
        .features-row .feature-box:nth-child(2).in-view {
            animation-delay: 0.5s; /* Staggered delay */
        }
        .features-row .feature-box:nth-child(3).in-view {
            animation-delay: 0.7s; /* Staggered delay */
        }        
        .feature-box::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(
                to bottom right,
                rgba(var(--glow-color-rgb), 0.08), /* Slightly more visible sheen */
                rgba(var(--glow-color-rgb), 0.02),
                transparent
            );
            transform: rotate(45deg) translateX(15%) translateY(-10%); /* Enhanced movement */
            z-index: 0; /* Behind content but above card's direct background */
            transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }
        .feature-box:hover {
            transform: translateY(-10px) scale(1.05) rotateX(5deg) rotateY(-3deg); /* Added tilt */
            box-shadow: 0 18px 35px var(--shadow-color-medium); /* Enhanced shadow */
            border-color: var(--glow-color);
            background-color: var(--card-bg-subtle-light);
        }
        .feature-icon {
            font-size: 2.5rem;
            color: var(--glow-color);
            margin-bottom: 1rem;
            opacity: 0.8;
            transition: all 0.3s ease;
            position: relative; /* Ensure icon is above the sheen */
            z-index: 1;        }
        .feature-box:hover .feature-icon {
          transform: scale(1.15) rotate(10deg); /* Added rotation and increased scale */
          opacity: 1;
        }
        .feature-box h3 {
            font-size: 1.3rem;
            position: relative;
            margin-bottom: 1rem;
            padding-bottom: 0.5rem;
            color: var(--arctic); /* Ensure title color is set */
            position: relative; /* Ensure title is above the sheen */
            z-index: 1;
        }
        .feature-box h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 40px;
            height: 2.5px; /* Slightly thicker */
            background-color: var(--glow-color);
            transform: scaleX(0.5) translateX(-100%); /* Initial state for animation */
        }
        .feature-box p {
            position: relative; /* Ensure paragraph is above the sheen */
            z-index: 1;
        }

        /* Events & Announcements Section */
        .section-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 2.5rem;
            opacity: 0;
            transform: translateY(20px);
        }
        .section-header.in-view {
            animation: fadeInUp 0.8s ease forwards;
        }
        .section-header h2 {
            text-align: left;
            margin-bottom: 0;
            position: relative;
            padding-left: 15px;
        }
        .section-header h2::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            height: 100%;
            width: 5px;
            background-color: var(--glow-color);
            border-radius: 2px;
        }
        .view-all {
            color: var(--glow-color);
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 5px;
        }
        .view-all::after {
            content: '→';
            transition: transform 0.3s ease;
        }
        .view-all:hover {
            color: var(--hover-color);
        }
        .view-all:hover::after {
            transform: translateX(5px);
        }
       /* Specific styling for "Read More" button in announcement cards */
       .announcement-card .view-all {
            display: inline-block; /* To apply padding and background correctly */
            background-color: var(--glow-color);
            color: var(--midnight); /* Text color for contrast */
            padding: 0.6rem 1.5rem; /* Adjust padding for a nice button size */
            border-radius: 25px;    /* For a pill shape */
            text-decoration: none;
            font-weight: 500;
            font-size: 0.9rem;
            transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            margin-top: 1rem;      /* Space from the content above */
            text-align: center;
            box-shadow: 0 4px 8px var(--shadow-color-light);
            align-self: flex-start; /* Align to the start if card is flex, or just let it flow */
        }

        .announcement-card .view-all::after {
            content: none; /* Remove the default arrow from .view-all */
        }

        .announcement-card .view-all:hover {
            background-color: var(--hover-color); /* Darker shade on hover */
            color: var(--midnight); /* Ensure text color remains readable */
            transform: translateY(-3px) scale(1.03);
            box-shadow: 0 7px 14px var(--shadow-color-medium);
        }
        .events-row, .announcements-row {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            perspective: 1000px; /* For 3D tilt effect on children */
            gap: 2rem;
        }

        /* Card Styling (Events/Announcements) */
        .event-card, .announcement-card {
            background: var(--card-bg-light);
            border: 1px solid var(--border-color-light);
            border-radius: 12px;
            padding: 1.5rem;
            transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), 
                        box-shadow 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), 
                        border-color 0.3s ease, background-color 0.3s ease;            
            overflow: hidden;
            position: relative;
            opacity: 0;
            transform: translateY(30px);
            box-shadow: 0 10px 20px var(--shadow-color-light);
        }
        .event-card.in-view, .announcement-card.in-view {
            animation: fadeInUp 0.8s ease forwards;
        }
        .event-card::before, .announcement-card::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(
                to bottom right,
                rgba(var(--glow-color-rgb), 0.08),
                rgba(var(--glow-color-rgb), 0.02),
                transparent
            );
            transform: rotate(45deg);
            z-index: 0; /* Behind content but above card's direct background */
            transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }
        .event-card:hover, .announcement-card:hover {
            transform: translateY(-15px) scale(1.06) rotateX(4deg) rotateY(-4deg); /* Added tilt, more lift & scale */
            box-shadow: 0 20px 40px var(--shadow-color-medium); /* Enhanced shadow */
            border-color: var(--glow-color);
            background-color: var(--card-bg-subtle-light);
          }
        .event-card:hover::before, .announcement-card:hover::before {
            transform: rotate(45deg) translateX(15%) translateY(-10%); /* Enhanced movement */
        }
        .event-card img {
            width: 100%;
            height: 180px;
            object-fit: cover;
            border-radius: 8px;
            margin-bottom: 1rem;
            transition: transform 0.5s ease;
            position: relative; /* Ensure image is above the sheen */
            z-index: 1;        }
        .event-card:hover img {
          transform: scale(1.05); 
        }
        .event-title-line {
            display: flex;
            align-items: baseline; /* Aligns title text and tag nicely */
            gap: 0.5rem; /* Space between title and tag */
            margin-bottom: 0.5rem; /* Replaces h3's original margin-bottom */
            position: relative; /* For z-index stacking context if needed */
            z-index: 1;        }
        .event-card h3, .announcement-card h4 {
            margin-bottom: 0.5rem;
            position: relative;
            padding-bottom: 0.75rem; /* Increased padding for underline */
            color: var(--arctic); /* Ensure title color is set */
            z-index: 1; /* Ensure title is above the sheen */
        }        
        .event-card h3::after, .announcement-card h4::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px; /* Base width for underline */
            height: 2.5px; /* Slightly thicker */
            background-color: var(--glow-color);
            transform: scaleX(0.66); /* Initial scale (e.g., 40px / 60px) */
            transform-origin: left;
            transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }
        .event-card:hover h3::after, 
        .announcement-card:hover h4::after,
        .feature-box:hover h3::after {
            transform: scaleX(1) translateX(0); /* Full width and correct position */
        }
        .event-date, .event-location, .announcement-meta {
            font-size: 0.9rem;
            color: var(--apres-ski);
            margin-bottom: 0.75rem;
            display: flex;
            align-items: center;
            gap: 5px;
            position: relative; /* Ensure meta info is above the sheen */
            z-index: 1;
        }
        .event-date i, .event-location i, .announcement-meta i {
            color: var(--glow-color);
            font-size: 1rem;
        }
        .event-card p, .announcement-card p { /* Target p in event-card as well */
            font-size: 0.95rem;
            margin-bottom: 1rem;
            line-height: 1.6;
            position: relative; /* Ensure paragraph is above the sheen */
            z-index: 1;
        }
        
        .rsvp-btn {
            display: inline-flex;
            align-items: center;
            gap: 5px;
            padding: 0.5rem 1rem;
            background-color: transparent;
            color: var(--glow-color);
            border: 1px solid var(--glow-color);
            border-radius: 4px;
            font-weight: 500;
            transition: all 0.3s ease;
            cursor: pointer;
            margin-top: 0.5rem;
            position: relative; /* Ensure button is above the sheen */
            z-index: 1;
        }
        
        .rsvp-btn:hover {
            background-color: var(--glow-color);
            color: white;
        }
        
        .rsvp-btn.rsvp-active {
            background-color: var(--glow-color);
            color: white;
        }
        
        .event-category-tag { /* Renamed from .event-tag and restyled */
            position: absolute;
            top: 15px;
            right: 15px;
            background-color: var(--glow-color);
            color: white;
            padding: 0.2rem 0.6rem; /* Smaller padding */
            border-radius: 12px;   /* Smaller border-radius */
            font-size: 0.7rem;     /* Smaller font size */
            font-weight: 500;
            letter-spacing: 0.3px;
            display: inline-block; /* Allows it to sit next to title in flex container */
            line-height: 1.2; /* Adjust for vertical alignment if needed */
            align-self: center; /* Align tag vertically with title if title is taller */
        }        

        /* FAQ Section */
        .faq-section { background-color: var(--mountainside); }
        .faq-split {
            display: flex;
            gap: 3rem;
            align-items: flex-start;
        }
        .faq-left { 
            flex: 1;
            opacity: 0;
            transform: translateX(-30px);
        }
        .faq-left.in-view {
            animation: fadeInLeft 0.8s ease forwards;
        }
        .faq-right { 
            flex: 1.5;
            opacity: 0;
            transform: translateX(30px);
        }
        .faq-right.in-view {
            animation: fadeInRight 0.8s ease forwards;
        }
        .faq-title { 
            text-align: left; 
            font-size: 2.5rem; 
            margin-bottom: 1rem;
            position: relative;
            padding-bottom: 0.5rem;
        }
        .faq-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 3px;
            background-color: var(--glow-color);
        }
        .faq-desc { 
            font-size: 1.1rem; 
            color: var(--apres-ski); 
            margin-bottom: 2rem;
            max-width: 90%;
        }

        .faq-list { list-style: none; }
        .faq-item {
            background: var(--card-bg-light);
            border: 1px solid var(--border-color-light);
            border-radius: 8px;
            margin-bottom: 1rem;
            overflow: hidden;
            transition: all 0.3s ease;
            opacity: 0;
            transform: translateY(20px);
        }
        .faq-item.in-view {
            animation: fadeInUp 0.8s ease forwards;
            animation-delay: calc(var(--faq-index) * 0.1s);
        }
        .faq-item:hover {
            border-color: var(--glow-color);
            box-shadow: 0 5px 15px var(--shadow-color-light);
        }
        .faq-question {
            width: 100%;
            background: transparent;
            border: none;
            padding: 1.5rem;
            text-align: left;
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--arctic);
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .faq-question::after {
            content: '\f078';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            transition: transform 0.3s ease;
            color: var(--glow-color);
        }
        .faq-item.open .faq-question::after {
            transform: rotate(180deg);
        }
        .faq-answer {
            padding: 0 1.5rem;
            font-size: 1rem;
            color: var(--apres-ski);
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease, padding 0.3s ease;
        }
        .faq-item.open .faq-answer {
            max-height: 500px;
            padding-bottom: 1.5rem;
        }
        /* Success Toast Message */
        .success-toast {
            position: fixed;
            top: 20px;
            right: 20px;
            background-color: var(--glow-color);
            color: var(--midnight);
            padding: 1rem 1.5rem;
            border-radius: 8px;
            box-shadow: 0 5px 15px var(--shadow-color-medium);
            opacity: 0;
            transform: translateX(100%); /* Start off-screen to the right */
            transition: opacity 0.3s ease, transform 0.3s ease;
            z-index: 2000;
            font-size: 1rem;
            font-weight: 500;
        }
        .success-toast.show {
            opacity: 1;
            transform: translateX(0);
        }
        .success-toast.hide {
            opacity: 0;
            transform: translateX(100%);
        }

        /* Call to Action Section */
        .cta-section {
            background: linear-gradient(135deg, var(--glow-color) 0%, var(--hover-color) 100%);
            padding: 5rem 2rem;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .cta-container {
            max-width: 800px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }
        .cta-bg-shapes {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
            opacity: 0.1;
        }
        .cta-shape {
            position: absolute;
            border-radius: 50%;
            background: white;
            opacity: 0.3;
        }
        .cta-shape:nth-child(1) {
            width: 200px;
            height: 200px;
            top: -50px;
            left: 10%;
        }
        .cta-shape:nth-child(2) {
            width: 300px;
            height: 300px;
            bottom: -100px;
            right: 5%;
        }
        .cta-shape:nth-child(3) {
            width: 150px;
            height: 150px;
            top: 30%;
            right: 20%;
        }
        .cta-title {
            color: white;
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
            opacity: 0;
            transform: translateY(20px);
        }
        .cta-title.in-view {
            animation: fadeInUp 0.8s ease forwards;
        }
        .cta-text {
            color: rgba(255, 255, 255, 0.9);
            font-size: 1.1rem;
            margin-bottom: 2rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
            opacity: 0;
            transform: translateY(20px);
        }
        .cta-text.in-view {
            animation: fadeInUp 0.8s ease 0.2s forwards;
        }
        .cta-btn {
            background-color: white;
            color: var(--glow-color);
            font-weight: 600;
            border: none;
            padding: 1rem 2.5rem;
            border-radius: 6px;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            opacity: 0;
            transform: translateY(20px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            cursor: pointer;
        }
        .cta-btn.in-view {
            animation: fadeInUp 0.8s ease 0.4s forwards;
        }
        .cta-btn:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
        }

        /* Footer */
        footer {
            background: var(--mountainside); /* Very light gray footer */
            padding: 4rem 2rem 1rem;
            position: relative;
            overflow: hidden;
        }
        
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
        }
        
        .footer-logo {
            font-size: 1.8rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px; 
            color: var(--arctic);
            margin-bottom: 1.5rem;
            display: inline-block;
        }
        
        .footer-description {
            font-size: 1rem; 
            color: var(--apres-ski);
            line-height: 1.6;
            margin-bottom: 1.5rem;
        }
        
        .footer-social {
            display: flex;
            gap: 1rem;
        }
        
        .footer-social a {
            width: 40px;
            height: 40px;
            background: rgba(var(--glow-color-rgb), 0.08);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--apres-ski);
            font-size: 1rem;
            transition: all 0.3s ease;
        }
        
        .footer-social a:hover {
            background: rgba(var(--glow-color-rgb), 0.15);
            color: var(--glow-color);
            transform: translateY(-3px);
        }
        
        .footer-links h4 {
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 1.5rem;
            color: var(--arctic); /* Dark text */
            position: relative;
            display: inline-block;
        }
        
        .footer-links h4::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 30px;
            height: 2px;
            background: var(--glow-color); /* Blue underline */
        }
        
        .footer-links ul {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 0.8rem;
        }
        
        .footer-links a {
            color: var(--apres-ski);
            text-decoration: none;
            font-size: 1rem;
            transition: all 0.3s ease;
            display: inline-block;
            position: relative;
        }
        
        .footer-links a::before {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0;
            height: 1px;
            background: var(--glow-color);
            transition: all 0.3s ease;
        }
        
        .footer-links a:hover {
            color: var(--glow-color);
            transform: translateX(5px);
        }
        
        .footer-links a:hover::before {
            width: 100%;
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 1.5rem; /* Reduced top padding from 2rem to 1.5rem */
            margin-top: 1.5rem; /* Reduced top margin from 2rem to 1.5rem */
            border-top: 1px solid var(--border-color-light);
            color: var(--apres-ski);
            font-size: 0.9rem;
            padding-bottom: 1rem; /* Added bottom padding to create space below copyright text */
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes fadeInLeft {
            from {
                opacity: 0;
                transform: translateX(-30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }
        
        @keyframes fadeInRight {
            from {
                opacity: 0;
                transform: translateX(30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }
        
        @keyframes pulse {
            0% {
                transform: translate(-50%, -50%) scale(1);
                border-color: rgba(var(--glow-color-rgb), 0.1);
            }
            100% {
                transform: translate(-50%, -50%) scale(1.2);
                border-color: rgba(var(--glow-color-rgb), 0.3);
            }
        }
        
        @keyframes gradientAnimation {
            0% {
                background-position: 0% 50%;
            }
            50% {
                background-position: 100% 50%;
            }
            100% {
                background-position: 0% 50%;
            }
        }
        @keyframes reveal { /* Added from about.html */
            from {
                clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%); /* Corrected 0% */
                opacity: 1; /* Ensure it's visible during animation */
            }
            to {
                clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
                opacity: 1;
            }
        }
       /* Additional Keyframes from about.html if not already present or different */
        @keyframes fadeIn { /* Already in about.html, ensure it's here */
            from { opacity: 0; }
            to { opacity: 1; }
        }

        @keyframes slideUp { /* From about.html */
            from {
                opacity: 0;
                transform: translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes float { /* From about.html */
            0% { transform: translateY(0px) perspective(1000px) rotateY(-15deg); } /* Keep perspective */
            50% { transform: translateY(-10px) perspective(1000px) rotateY(-15deg); }
            100% { transform: translateY(0px) perspective(1000px) rotateY(-15deg); }
        }

        @keyframes textGlitch { /* From about.html */
            0%, 100% { text-shadow: 0 0 0 var(--arctic); }
            20% { text-shadow: -1px 0 1px var(--glow-color), 1px 0 1px var(--accent-color); }
            40%, 60% { text-shadow: 1px 0 1px var(--glow-color), -1px 0 1px var(--accent-color); }
            80% { text-shadow: 0 0 0 var(--arctic); }
        }
        /* .btn-primary-hero styles (copied from .btn-primary in about.html) */
        /* This is to avoid conflict if index.html already has a different .btn-primary */
        /* If you want all .btn-primary to look like this, merge the styles */

        /* Media Queries */
        @media screen and (max-width: 992px) {
            .hero-section .hero-text h1 {
                font-size: 3rem;
            }
            .hero-section .hero-text p {
                font-size: 1.1rem;
            }
            .faq-split {
                flex-direction: column;
            }
            .faq-left, .faq-right {
                width: 100%;
            }
            /* New Hero Responsive */
            .hero-main-row {
                flex-direction: column;
                text-align: center; /* Center text when stacked */
            }
        }
        
        @media screen and (max-width: 768px) {
            .hero-section .hero-text h1 {
                font-size: 2.5rem;
            }
            .hero-section .hero-text p {
                font-size: 1rem;
            }
            .feature-box {
                max-width: 400px;
                margin-left: auto;
                margin-right: auto;
            }
            .section-header {
                flex-direction: column;
                align-items: flex-start;
                gap: 1rem;
            }
            .footer-container {
                grid-template-columns: 1fr;
            }
            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }
            .footer-policy {
                margin: 0 auto;
            }

            /* Mobile Navigation */
            .nav-links {
                position: fixed;
                top: 0;
                right: -100%;
                height: 100vh;
                width: 70%;
                background-color: var(--midnight);
                flex-direction: column;
                justify-content: center;
                align-items: center;
                transition: right 0.5s ease;
                z-index: 99;
                box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
            }
            
            .nav-links.active {
                right: 0;
            }
            
            #hamburger-menu {
                display: flex;
                z-index: 100;
            }

            /* New Hero Responsive */
            .hero-content-left .hero-glitch-text { font-size: 2.5rem; }
            .hero-content-left > p { font-size: 1.1rem; }
            .hero-stats-row {
                flex-direction: column;
                gap: 1.5rem;
                align-items: center; /* Center stat items when stacked */
            }
        }
        
        @media screen and (max-width: 576px) {
            .hero-section .hero-text h1 {
                font-size: 2rem;
            }
            .hero-section .hero-text p {
                font-size: 0.9rem;
            }
            .btn-row {
                flex-direction: column;
                align-items: center;
            }
            .btn-primary, .btn-outline {
                width: 100%;
                max-width: 300px;
            }
            h2 {
                font-size: 2rem;
            }
            .cta-title {
                font-size: 2rem;
            }
        }