/* Base Styles */
        html {
            background: #fff;
            font-size: 16px;
            overflow-x: hidden;
            overflow-y: scroll;
            box-sizing: border-box;
        }

        *, *::before, *::after {
            box-sizing: inherit;
        }

        body {
            margin: 0;
            color: #4a4a4a;
            font-size: 1em;
            font-weight: 400;
            line-height: 1.625;
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            max-width: 100%;
            min-width: 0;
            overflow-wrap: break-word;
        }

        img,
        picture {
            max-width: 100%;
            height: auto;
        }

        header,
        .hero,
        .hero picture {
            max-width: 100%;
            min-width: 0;
        }

        a {
            color: #3298dc;
            text-decoration: none;
            overflow-wrap: anywhere;
        }

        a:hover,
        a:focus {
            color: #2366a8;
            text-decoration: underline;
        }

        a:focus-visible {
            outline: 3px solid rgba(212, 175, 55, 0.55);
            outline-offset: 2px;
        }

        .skip-link {
            position: absolute;
            left: 0.75rem;
            top: 0.75rem;
            z-index: 20;
            padding: 0.5rem 0.75rem;
            background: #1a1211;
            color: #fff;
            transform: translateY(-200%);
        }

        .skip-link:focus,
        .skip-link:focus-visible {
            transform: none;
            color: #fff;
            text-decoration: none;
        }

        .site-nav {
            background: #1a1211;
            padding: 0.25rem 0;
        }

        .site-nav-inner {
            display: flex;
            flex-wrap: wrap;
            gap: 0.25rem 0.5rem;
            align-items: center;
        }

        .site-nav a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            box-sizing: border-box;
            min-height: 48px;
            min-width: 48px;
            padding: 0 0.85rem;
            color: #f5e6c8;
            font-size: 0.95rem;
        }

        .site-nav a:hover,
        .site-nav a:focus {
            color: #d4af37;
        }

        .headline-band {
            background-color: #6f4440;
        }

        /* Layout */
        .container {
            margin: 0 auto;
            width: auto;
            max-width: 960px;
            min-width: 0;
            padding: 0 1.5rem;
        }

        .columns {
            display: flex;
            flex-wrap: wrap;
            margin: 0 -.75rem;
        }

        .column {
            padding: .75rem;
            flex: 1 1 0;
            min-width: 0;
            max-width: 100%;
        }

        @media (min-width: 769px) {
            .column.is-8-desktop {
                flex: 0 0 66.6666%;
                width: 66.6666%;
            }

            .column.is-offset-2-desktop {
                margin-left: 16.6666%;
            }
        }

        /* Hero Section */
        .hero {
            display: flex;
            flex-direction: column;
            color: #fff;
        }

        .hero.is-large {
            position: relative;
            overflow: hidden;
            min-height: 500px;
        }

        .hero.is-info {
            background-color: #3d2a28;
            color: #fff;
        }

        .has-text-white {
            color: #fff !important;
        }

        .has-text-centered {
            text-align: center;
        }

        .columns.is-centered {
            justify-content: center;
        }

        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            z-index: 1;
            padding-left: 10%;
        }

        .overlay-text {
            font-size: 8rem;
            line-height: 1.2;
            font-weight: 800;
            text-transform: uppercase;
            color: #fff;
            text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
        }

        .hero + .section {
            min-height: 20vh;
        }

        .hero-image {
            position: relative;
            display: block;
            width: 100%;
            max-width: 100%;
            height: auto;
            z-index: 0;
            aspect-ratio: 1200 / 630;
        }

        /* Typography */
        .title {
            font-size: 2.5rem;
            font-weight: 600;
            color: #fff;
            margin-bottom: 1rem;
            overflow-wrap: break-word;
        }

        .subtitle.is-4 {
            font-size: 1.25rem;
            color: #fff;
            opacity: 0.95;
        }

        /* Content */
        .section {
            padding: 4rem 1.5rem;
        }

        .content h2,
        .content h3 {
            overflow-wrap: break-word;
        }

        .content h2 {
            margin: 2.5rem 0 .75rem;
            font-size: 1.75rem;
            font-weight: 600;
            color: #363636;
        }

        .content h3 {
            margin: 2.5rem 0 .75rem;
            font-size: 1.5rem;
            font-weight: 600;
            color: #363636;
        }

        .content p {
            margin-bottom: 1rem;
            overflow-wrap: break-word;
        }

        .content li {
            overflow-wrap: break-word;
        }

        .content ul {
            list-style: disc outside;
            margin: 1em 0 1em 1.25rem;
            padding: 0;
        }

        .content li + li {
            margin-top: 0.25em;
        }

        .content strong {
            font-weight: 700;
            color: #363636;
        }

        #application,
        #questions,
        #apply {
            scroll-margin-top: 1rem;
        }

        .footer {
            background-color: #fafafa;
            padding: 3rem 1.5rem 6rem;
        }

        .footer a {
            color: #3298dc;
        }

        .footer a:hover,
        .footer a:focus {
            color: #2366a8;
        }

        .footer a[data-track-location] {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-width: 48px;
            min-height: 48px;
            vertical-align: middle;
        }

        code {
            display: block;
            width: 100%;
            max-width: 100%;
            word-break: break-all;
            overflow-wrap: anywhere;
        }

        /* Tablet and Mobile (max-width: 768px) */
        @media (max-width: 768px) {
            .hero.is-large {
                min-height: 400px;
            }

            .hero-overlay {
                padding-left: 5%;
                padding-right: 5%;
            }

            .overlay-text {
                font-size: 2.5rem;
                line-height: 1.1;
            }

            .hero-image {
                aspect-ratio: 4 / 3;
            }

            .columns {
                margin-left: 0;
                margin-right: 0;
            }

            .column,
            .column.is-8-desktop {
                flex: 1 1 100%;
                width: auto;
                padding-left: 0;
                padding-right: 0;
            }

            .column.is-offset-2-desktop {
                margin-left: 0;
            }

            .section {
                padding: 2rem 1rem;
            }

            .title {
                font-size: 1.75rem;
            }

            .title.is-2 {
                font-size: 1.5rem;
            }

            .subtitle.is-4 {
                font-size: 1.1rem;
            }

            .content code {
                font-size: 0.85em;
            }

            .content h2 {
                font-size: 1.5rem;
            }

            .content h3 {
                font-size: 1.25rem;
                margin-top: 2rem;
            }

            .content h4 {
                font-size: 1.1rem;
            }
        }

        /* Extra-small devices (max-width: 480px) */
        @media (max-width: 480px) {
            .hero.is-large {
                min-height: 300px;
            }

            .overlay-text {
                font-size: 1.8rem;
            }

            .container {
                padding: 0 1rem;
            }

            .section {
                padding: 1.5rem 0.75rem;
            }
        }
