html {
            scroll-behavior: smooth;
        }
        /* ===== Access Page - Modern Design ===== */

        /* Lead Section */
        .acc-lead {
            padding: 56px 0 0;
            text-align: center;
        }
        .acc-lead .container {
            max-width: 820px;
        }
        .acc-lead__sub {
            font-size: 13px;
            font-weight: 600;
            color: var(--thm-primary-color);
            letter-spacing: 3px;
            text-transform: uppercase;
            margin-bottom: 10px;
        }
        .acc-lead__title {
            font-size: 28px;
            font-weight: 700;
            color: var(--thm-black);
            margin-bottom: 20px;
            line-height: 1.4;
        }
        .acc-lead__text {
            font-size: 15px;
            line-height: 1.9;
            color: var(--thm-gray);
        }
        .acc-lead__text p {
            margin-bottom: 0;
        }

        /* Hero Info Section */
        .acc-hero {
            padding: 64px 0;
        }
        .acc-hero .container {
            max-width: 1100px;
        }
        .acc-hero__inner {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 48px;
            align-items: center;
        }
        .acc-hero__img {
            border-radius: 12px;
            overflow: hidden;
        }
        .acc-hero__img img {
            width: 100%;
            height: 380px;
            object-fit: cover;
            display: block;
        }
        .acc-hero__body {
            padding: 0 8px;
        }
        .acc-hero__label {
            display: inline-block;
            background: var(--thm-primary-color);
            color: #fff;
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 2px;
            padding: 4px 12px;
            border-radius: 4px;
            margin-bottom: 12px;
        }
        .acc-hero__heading {
            font-size: 24px;
            font-weight: 700;
            color: var(--thm-black);
            line-height: 1.5;
            margin-bottom: 16px;
        }
        .acc-hero__info-table {
            display: flex;
            flex-direction: column;
            gap: 0;
        }
        .acc-hero__info-row {
            display: flex;
            align-items: flex-start;
            padding: 14px 0;
            border-bottom: 1px solid #e4e8ed;
        }
        .acc-hero__info-row:first-child {
            padding-top: 0;
        }
        .acc-hero__info-row:last-child {
            border-bottom: none;
            padding-bottom: 0;
        }
        .acc-hero__info-icon {
            width: 36px;
            height: 36px;
            border-radius: 8px;
            background: rgba(var(--thm-primary-rgb, 34,139,34), 0.08);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            color: var(--thm-primary-color);
            flex-shrink: 0;
            margin-right: 14px;
        }
        .acc-hero__info-content {
            flex: 1;
        }
        .acc-hero__info-label {
            font-size: 11px;
            font-weight: 600;
            color: #8a94a3;
            letter-spacing: 1px;
            text-transform: uppercase;
            margin-bottom: 2px;
        }
        .acc-hero__info-value {
            font-size: 15px;
            color: var(--thm-black);
            line-height: 1.6;
            margin: 0;
        }
        .acc-hero__info-value a {
            color: var(--thm-primary-color);
            text-decoration: none;
            font-weight: 600;
        }

        /* Map Section */
        .acc-map {
            padding: 0 0 80px;
        }
        .acc-map .container {
            max-width: 1100px;
        }
        .acc-map__frame {
            width: 100%;
            height: 420px;
            background-color: #e8ecf1;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
            color: #8a94a3;
            overflow: hidden;
            position: relative;
        }
        .acc-map__frame i {
            font-size: 24px;
            margin-right: 10px;
            opacity: 0.5;
        }

        /* Shuttle Note (inline sub-info) */
        .acc-shuttle-note {
            margin-top: 32px;
            background: #fff;
            border-radius: 10px;
            padding: 20px 24px;
            display: flex;
            align-items: center;
            gap: 16px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.05);
        }
        .acc-shuttle-note__icon {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: var(--thm-primary-color);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
            color: #fff;
            flex-shrink: 0;
        }
        .acc-shuttle-note__body {
            flex: 1;
        }
        .acc-shuttle-note__title {
            font-size: 16px;
            font-weight: 700;
            color: var(--thm-black);
            margin-bottom: 2px;
        }
        .acc-shuttle-note__text {
            font-size: 15px;
            color: var(--thm-gray);
            line-height: 1.6;
            margin: 0;
        }
        .acc-shuttle-note__areas {
            display: inline;
        }
        .acc-shuttle-note__areas span {
            font-weight: 600;
            color: var(--thm-black);
        }

        /* Quick Nav Cards */
        .acc-nav {
            padding: 80px 0;
            background: #f7f9fc;
        }
        .acc-nav .container {
            max-width: 1100px;
        }
        .acc-nav__header {
            text-align: center;
            margin-bottom: 48px;
        }
        .acc-nav__sub {
            font-size: 13px;
            font-weight: 600;
            color: var(--thm-primary-color);
            letter-spacing: 3px;
            text-transform: uppercase;
            margin-bottom: 10px;
        }
        .acc-nav__title {
            font-size: 26px;
            font-weight: 700;
            color: var(--thm-black);
            line-height: 1.3;
        }
        .acc-nav__grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }
        .acc-nav__card {
            background: #fff;
            border-radius: 12px;
            padding: 36px 28px;
            text-align: center;
            box-shadow: 0 2px 12px rgba(0,0,0,0.05);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            text-decoration: none;
            display: block;
            color: inherit;
            cursor: pointer;
        }
        .acc-nav__card:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 28px rgba(0,0,0,0.1);
            color: inherit;
            text-decoration: none;
        }
        .acc-nav__card-num {
            font-size: 36px;
            font-weight: 700;
            color: var(--thm-primary-color);
            opacity: 0.15;
            line-height: 1;
            margin-bottom: 12px;
        }
        .acc-nav__card-icon {
            width: 64px;
            height: 64px;
            border-radius: 50%;
            background: var(--thm-primary-color);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 24px;
            color: #fff;
        }
        .acc-nav__card-left {
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        .acc-nav__card-title {
            font-size: 18px;
            font-weight: 700;
            color: var(--thm-black);
            margin-bottom: 8px;
        }
        .acc-nav__card-sub {
            font-size: 12px;
            font-weight: 600;
            color: #8a94a3;
            letter-spacing: 1px;
            text-transform: uppercase;
            margin-bottom: 16px;
        }
        .acc-nav__card-text {
            font-size: 14px;
            line-height: 1.8;
            color: var(--thm-gray);
            margin: 0;
        }

        /* Detail Sections */
        .acc-detail {
            padding: 80px 0;
            background: #fff;
        }
        .acc-detail--alt {
            background: #f7f9fc;
        }
        .acc-detail .container {
            max-width: 1100px;
        }
        .acc-detail__header {
            display: flex;
            align-items: center;
            gap: 20px;
            margin-bottom: 32px;
        }
        .acc-detail__num {
            font-size: 56px;
            font-weight: 700;
            color: var(--thm-primary-color);
            opacity: 0.15;
            line-height: 1;
            flex-shrink: 0;
        }
        .acc-detail__header-text {
            flex: 1;
        }
        .acc-detail__sub {
            font-size: 12px;
            font-weight: 600;
            color: var(--thm-primary-color);
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 4px;
        }
        .acc-detail__title {
            font-size: 22px;
            font-weight: 700;
            color: var(--thm-black);
            line-height: 1.4;
        }
        .acc-detail__row {
            display: flex;
            gap: 40px;
            align-items: flex-start;
        }
        .acc-detail__row--reverse {
            flex-direction: row-reverse;
        }
        .acc-detail__img {
            flex: 0 0 48%;
            border-radius: 10px;
            overflow: hidden;
        }
        .acc-detail__img img {
            width: 100%;
            height: auto;
            max-height: 320px;
            object-fit: cover;
            display: block;
        }
        .acc-detail__body {
            flex: 1;
            padding-top: 4px;
        }
        .acc-detail__desc {
            font-size: 15px;
            line-height: 1.9;
            color: var(--thm-gray);
            margin-bottom: 20px;
        }
        .acc-detail__desc p {
            margin-bottom: 0;
        }
        .acc-detail__steps {
            display: flex;
            flex-direction: column;
            position: relative;
            padding-left: 24px;
            border-left: 2px solid #e4e8ed;
        }
        .acc-detail__step {
            display: flex;
            align-items: center;
            gap: 14px;
            padding: 10px 0;
            position: relative;
        }
        .acc-detail__step-icon {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: var(--thm-primary-color);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
            color: #fff;
            flex-shrink: 0;
            position: relative;
            left: -45px;
            margin-right: -31px;
        }
        .acc-detail__step-num {
            font-size: 12px;
            font-weight: 700;
            color: #fff;
            background: var(--thm-primary-color);
            width: 22px;
            height: 22px;
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            margin-right: 2px;
            opacity: 0.85;
        }
        .acc-detail__step-text {
            font-size: 15px;
            color: var(--thm-black);
            font-weight: 500;
            line-height: 1.5;
        }
        /* Info box for parking etc */
        .acc-detail__info-box {
            background: #fff;
            border-radius: 10px;
            padding: 24px 28px;
            border: 1px solid #e4e8ed;
        }
        .acc-detail:nth-child(even) .acc-detail__info-box {
            background: #fff;
        }
        .acc-detail__info-item {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 10px 0;
            border-bottom: 1px solid #f0f2f5;
        }
        .acc-detail__info-item:last-child {
            border-bottom: none;
            padding-bottom: 0;
        }
        .acc-detail__info-item:first-child {
            padding-top: 0;
        }
        .acc-detail__info-item i {
            color: var(--thm-primary-color);
            font-size: 16px;
            width: 24px;
            text-align: center;
            flex-shrink: 0;
        }
        .acc-detail__info-item span {
            font-size: 15px;
            color: var(--thm-black);
            line-height: 1.6;
        }

        /* PC only line break */
        .br-pc {
            display: inline;
        }

        /* ===== Responsive ===== */
        @media (max-width: 991px) {
            .acc-hero__inner {
                grid-template-columns: 1fr;
                gap: 32px;
            }
            .acc-hero__img img {
                height: 300px;
            }
            .acc-nav__grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 16px;
            }
            .acc-nav, .acc-detail {
                padding: 56px 0;
            }
            .acc-detail__row,
            .acc-detail__row--reverse {
                flex-direction: column;
                gap: 24px;
            }
            .acc-detail__img {
                flex: 1 1 100%;
            }
        }
        @media (max-width: 767px) {
            .acc-lead {
                padding: 40px 0 0;
            }
            .acc-lead__title {
                font-size: 22px;
            }
            .acc-hero {
                padding: 40px 0;
            }
            .acc-hero__img img {
                height: 240px;
            }
            .acc-hero__heading {
                font-size: 27px;
            }
            .acc-map {
                padding: 0 0 40px;
            }
            .acc-map__frame {
                height: 300px;
                border-radius: 8px;
            }
            /* Free shuttle: vertical stack with icon centered on top */
            .acc-shuttle-note {
                flex-direction: column;
                text-align: center;
                gap: 10px;
                padding: 16px 20px;
            }
            .acc-shuttle-note__icon {
                width: 48px;
                height: 48px;
                font-size: 18px;
            }
            .acc-nav, .acc-detail {
                padding: 40px 0;
            }
            .acc-nav__grid {
                grid-template-columns: 1fr;
                gap: 12px;
            }
            .acc-nav__card {
                display: flex;
                align-items: center;
                text-align: left;
                padding: 20px 24px;
                gap: 16px;
            }
            .acc-nav__card-left {
                display: flex;
                flex-direction: column;
                align-items: center;
                gap: 6px;
                flex-shrink: 0;
                width: 56px;
            }
            .acc-nav__card-icon {
                margin: 0;
                width: 44px;
                height: 44px;
                font-size: 18px;
                flex-shrink: 0;
                order: -1;
            }
            .acc-nav__card-num {
                font-size: 24px;
                margin-bottom: 0;
                flex-shrink: 0;
                opacity: 0.3;
                order: 1;
            }
            .acc-nav__card-body {
                flex: 1;
            }
            .acc-nav__card-title {
                font-size: 16px;
                margin-bottom: 2px;
            }
            .acc-nav__card-sub {
                margin-top: 0;
                margin-bottom: 8px;
                font-size: 11px;
            }
            .acc-nav__card-text {
                font-size: 13px;
            }
            .acc-nav__title, .acc-detail__title {
                font-size: 22px;
            }
            .acc-detail__num {
                font-size: 40px;
            }
            .acc-detail__img img {
                height: auto;
                max-height: 240px;
            }
            /* Fix position of step icons and timeline line */
            .acc-detail__steps {
                padding-left: 0;
                margin-left: 20px;
            }
            .acc-detail__step-icon {
                left: -20px;
                margin-right: -15px;
                width: 36px;
                height: 36px;
                font-size: 14px;
            }
            /* Note box */
            .acc-detail__info-box {
                padding: 10px 15px;
            }
            /* Hide line break on PC */
            .br-pc {
                display: none;
            }
        }