:root {
    --default-font: "Roboto", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif;
    --heading-font: "Nunito", sans-serif;
    --nav-font: "Inter", sans-serif;
    --background-color: #ffffff;
    --default-color: #212529;
    --heading-color: #12366e;
    --accent-color: #14448f;
    --brand-green: #55b045;
    --brand-green-dark: #429135;
    --surface-color: #ffffff;
    --contrast-color: #ffffff;
    --nav-color: #212529;
    --nav-hover-color: #14448f;
    --nav-mobile-background-color: #ffffff;
    --nav-dropdown-background-color: #ffffff;
    --nav-dropdown-color: #212529;
    --nav-dropdown-hover-color: #14448f;
}

:root {
    scroll-behavior: smooth;
}

.itp-bg-light {
    --background-color: #eef3fb;
    --surface-color: #ffffff;
}

.itp-bg-dark {
    --background-color: #14448f;
    --default-color: #ffffff;
    --heading-color: #ffffff;
    --surface-color: #2b5ea8;
    --contrast-color: #ffffff;
}

body {
    color: var(--default-color);
    background-color: var(--background-color);
    font-family: var(--default-font);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

a {
    color: var(--accent-color);
    text-decoration: none;
    transition: 0.3s;
}

a:hover {
    color: color-mix(in srgb, var(--accent-color), transparent 25%);
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--heading-color);
    font-family: var(--heading-font);
}

.main {
    flex: 1 0 auto;
}

.main .btn-primary,
.main .btn-primary:focus {
    background-color: var(--brand-green);
    border-color: var(--brand-green);
    color: var(--contrast-color);
}

.main .btn-primary:hover,
.main .btn-primary:focus:hover {
    background-color: var(--brand-green-dark);
    border-color: var(--brand-green-dark);
    color: var(--contrast-color);
}

.main .itp-services .itp-service-card .itp-service-icon,
.main .itp-about-section .itp-feature-list li i,
.main .itp-stations .itp-station-detail-block i,
.main .itp-map-link i,
.main .itp-landing-hero .itp-hero-badge i,
.main .itp-booking-hero .itp-hero-badge i {
    color: var(--brand-green);
}

.itp-header {
    color: var(--default-color);
    background-color: transparent;
    padding: 20px 0;
    transition: all 0.5s;
    z-index: 997;
}

.itp-header .itp-header-container {
    background: var(--surface-color);
    border-radius: 50px;
    padding: 5px 25px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.itp-header .itp-brand {
    line-height: 1;
    padding-left: 5px;
}

.itp-header .itp-brand img {
    max-height: 56px;
    margin-right: 8px;
    margin-left: -8px;
}

.itp-header .itp-header-cta,
.itp-header .itp-header-cta:focus {
    color: var(--contrast-color);
    background: var(--accent-color);
    font-size: 14px;
    padding: 8px 20px;
    margin: 0 0 0 30px;
    border-radius: 50px;
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    white-space: nowrap;
}

.itp-header .itp-header-cta:hover,
.itp-header .itp-header-cta:focus:hover {
    color: var(--contrast-color);
    background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

.itp-header .itp-header-cta-icon {
    display: none;
    font-size: 18px;
    line-height: 1;
}

@media (min-width: 1200px) {
    .itp-nav {
        padding: 0;
    }

    .itp-nav ul {
        margin: 0;
        padding: 0;
        display: flex;
        list-style: none;
        align-items: center;
    }

    .itp-nav li {
        position: relative;
    }

    .itp-nav a,
    .itp-nav a:focus {
        color: var(--nav-color);
        padding: 18px 15px;
        font-size: 16px;
        font-family: var(--nav-font);
        font-weight: 400;
        display: flex;
        align-items: center;
        justify-content: space-between;
        white-space: nowrap;
        transition: 0.3s;
    }

    .itp-nav a i,
    .itp-nav a:focus i {
        font-size: 12px;
        line-height: 0;
        margin-left: 5px;
        transition: 0.3s;
    }

    .itp-nav li:hover>a,
    .itp-nav .active,
    .itp-nav .active:focus {
        color: var(--nav-hover-color);
    }

    .itp-nav .itp-nav-dropdown ul {
        margin: 0;
        padding: 10px 0;
        background: var(--nav-dropdown-background-color);
        display: block;
        position: absolute;
        visibility: hidden;
        left: 14px;
        top: 130%;
        opacity: 0;
        transition: 0.3s;
        border-radius: 15px;
        z-index: 99;
        box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
    }

    .itp-nav .itp-nav-dropdown ul li {
        min-width: 200px;
    }

    .itp-nav .itp-nav-dropdown ul a {
        padding: 10px 20px;
        font-size: 15px;
        color: var(--nav-dropdown-color);
    }

    .itp-nav .itp-nav-dropdown ul a i {
        font-size: 12px;
    }

    .itp-nav .itp-nav-dropdown ul a:hover,
    .itp-nav .itp-nav-dropdown ul .active:hover,
    .itp-nav .itp-nav-dropdown ul li:hover>a {
        color: var(--nav-dropdown-hover-color);
    }

    .itp-nav .itp-nav-dropdown:hover>ul {
        opacity: 1;
        top: 100%;
        visibility: visible;
    }
}

@media (max-width: 1199px) {
    .itp-nav-toggle {
        color: var(--nav-color);
        font-size: 28px;
        line-height: 0;
        margin-right: 10px;
        cursor: pointer;
        transition: color 0.3s;
    }

    .itp-nav {
        padding: 0;
        position: static;
        z-index: 9997;
    }

    .itp-nav ul {
        display: none;
        list-style: none;
        position: fixed;
        inset: 84px 16px 16px 16px;
        padding: 12px 0;
        margin: 0;
        border-radius: 12px;
        background-color: var(--nav-mobile-background-color);
        overflow-y: auto;
        transition: 0.3s;
        z-index: 9998;
        box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
    }

    .itp-nav a,
    .itp-nav a:focus {
        color: var(--nav-dropdown-color);
        padding: 10px 20px;
        font-family: var(--nav-font);
        font-size: 17px;
        font-weight: 500;
        display: flex;
        align-items: center;
        justify-content: space-between;
        white-space: nowrap;
        transition: 0.3s;
    }

    .itp-nav .itp-nav-dropdown ul {
        position: static;
        display: block;
        padding: 0;
        margin: 10px 20px;
        box-shadow: none;
        visibility: visible;
        opacity: 1;
        border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
        border-radius: 8px;
    }

    .itp-nav-open {
        overflow: hidden;
    }

    .itp-nav-open .itp-nav ul {
        display: block;
    }

    .itp-header {
        padding-top: 10px;
    }

    .itp-header .itp-header-container {
        margin-left: 10px;
        margin-right: 10px;
        padding: 10px 5px 10px 15px;
    }

    .itp-header .itp-brand {
        order: 1;
    }

    .itp-header .itp-header-cta {
        order: 2;
        margin: 0 10px 0 0;
        width: 40px;
        height: 40px;
        min-width: 40px;
        padding: 0;
        border-radius: 999px;
    }

    .itp-header .itp-header-cta-text {
        display: none;
    }

    .itp-header .itp-header-cta-icon {
        display: inline-flex;
    }

    .itp-header .itp-nav {
        order: 3;
    }
}

.itp-section {
    color: var(--default-color);
    background-color: var(--background-color);
    padding: 60px 0;
    scroll-margin-top: 90px;
    overflow: clip;
}

@media (max-width: 1199px) {
    .itp-section {
        scroll-margin-top: 66px;
    }
}

.itp-section-title {
    text-align: center;
    padding-bottom: 60px;
    position: relative;
}

.itp-section-title h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative;
}

.itp-section-title h2:after {
    content: "";
    position: absolute;
    display: block;
    width: 50px;
    height: 3px;
    background: var(--accent-color);
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
}

.itp-section-title p {
    margin-bottom: 0;
}

.itp-landing-hero,
.itp-booking-hero {
    position: relative;
    padding-top: 120px;
    background:
        radial-gradient(1200px 520px at -10% -15%, color-mix(in srgb, var(--accent-color), transparent 82%) 0%, transparent 65%),
        radial-gradient(900px 420px at 102% 8%, color-mix(in srgb, var(--brand-green), transparent 86%) 0%, transparent 62%),
        linear-gradient(180deg, #f7fbff 0%, #eef4fb 55%, #ffffff 100%);
}

.itp-landing-hero::before,
.itp-booking-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        repeating-linear-gradient(0deg, color-mix(in srgb, var(--accent-color), transparent 96%) 0 1px, transparent 1px 28px),
        repeating-linear-gradient(90deg, color-mix(in srgb, var(--accent-color), transparent 96%) 0 1px, transparent 1px 28px);
    opacity: 0.35;
    pointer-events: none;
}

.itp-landing-hero::after,
.itp-booking-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 90%, color-mix(in srgb, var(--brand-green), transparent 93%) 0%, transparent 42%);
    pointer-events: none;
}

.itp-landing-hero .itp-hero-content,
.itp-landing-hero .itp-hero-panel,
.itp-landing-hero .itp-hero-stats,
.itp-booking-hero .itp-hero-content,
.itp-booking-hero .itp-hero-panel,
.itp-booking-hero .itp-hero-stats {
    position: relative;
    z-index: 1;
}

.itp-landing-hero .itp-hero-content h1,
.itp-booking-hero .itp-hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--default-color);
}

.itp-landing-hero .itp-hero-content h1 .itp-accent-text,
.itp-booking-hero .itp-hero-content h1 .itp-accent-text {
    color: var(--brand-green);
}

.itp-landing-hero .itp-hero-badge,
.itp-booking-hero .itp-hero-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
    border-radius: 50px;
    color: var(--accent-color);
    font-weight: 500;
}

.itp-landing-hero .itp-hero-badge i,
.itp-booking-hero .itp-hero-badge i {
    font-size: 1.25rem;
}

.itp-landing-hero .itp-hero-stats {
    margin-top: 5rem;
    background-color: var(--surface-color);
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding-bottom: 2rem;
}

.itp-landing-hero .itp-hero-stat {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 2rem;
}

.itp-landing-hero .itp-hero-stat .itp-hero-stat-icon {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
    border-radius: 50px;
    transition: 0.3s;
}

.itp-landing-hero .itp-hero-stat .itp-hero-stat-icon i {
    font-size: 1.5rem;
    color: var(--accent-color);
}

.itp-landing-hero .itp-hero-stat:hover .itp-hero-stat-icon {
    background-color: var(--accent-color);
}

.itp-landing-hero .itp-hero-stat:hover .itp-hero-stat-icon i {
    color: var(--contrast-color);
}

.itp-landing-hero .itp-hero-stat .itp-hero-stat-content h4 {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
    font-weight: 600;
}

.itp-landing-hero .itp-hero-stat .itp-hero-stat-content p {
    font-size: 0.875rem;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    margin: 0;
}

.itp-services .itp-service-card {
    height: 100%;
    padding: 30px;
    background: var(--surface-color);
    border-radius: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.08);
}

.itp-services .itp-service-card .itp-service-icon {
    width: 60px;
    height: 60px;
    margin-right: 30px;
    background: color-mix(in srgb, var(--accent-color), transparent 90%);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-size: 28px;
    line-height: 1;
    transition: all 0.3s ease;
}

.itp-services .itp-service-card:hover .itp-service-icon {
    background: var(--brand-green);
    color: var(--contrast-color);
}

.itp-services .itp-service-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
}

.itp-services .itp-service-card p {
    margin-bottom: 0;
    color: color-mix(in srgb, var(--default-color), transparent 25%);
    font-size: 15px;
    line-height: 1.6;
}

.itp-about-section .itp-about-kicker {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 1rem;
}

.itp-about-section .itp-about-title {
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--heading-color);
}

.itp-about-section .itp-about-text {
    color: color-mix(in srgb, var(--default-color), transparent 25%);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.itp-about-section .itp-feature-lists {
    margin-bottom: 2rem;
}

.itp-about-section .itp-feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.itp-about-section .itp-feature-list li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.itp-about-section .itp-feature-list li i {
    font-size: 1.2rem;
    margin-right: 0.75rem;
}

.itp-about-section .itp-media-stack {
    position: relative;
}

.itp-about-section .itp-media-stack .itp-main-image {
    width: 100%;
    border-radius: 1rem;
    object-fit: cover;
}

.itp-about-section .itp-media-stack .itp-secondary-image {
    position: absolute;
    width: 45%;
    bottom: -20px;
    left: -20px;
    border: 4px solid #fff;
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.itp-about-section .itp-media-stack .itp-badge {
    position: absolute;
    right: -10px;
    top: 20px;
    background: var(--surface-color);
    padding: 1rem;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    text-align: center;
}

.itp-about-section .itp-media-stack .itp-badge h3 {
    margin: 0;
    font-size: 1.5rem;
    color: var(--accent-color);
}

.itp-about-section .itp-media-stack .itp-badge p {
    margin: 0.25rem 0 0;
    font-size: 0.875rem;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.itp-stations .itp-station-card {
    background: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #eef2f7;
    display: flex;
    flex-direction: column;
}

.itp-stations .itp-station-media img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.itp-stations .itp-station-body {
    border-radius: 0 0 10px 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
}

.itp-stations .itp-about-title {
    font-size: 1.34rem;
    margin-bottom: 1rem;
    line-height: 1.2;
    font-weight: 700;
}

.itp-stations .itp-station-detail-block i {
    font-size: 16px;
    margin-top: 2px;
}

.itp-stations .itp-station-detail-content {
    color: color-mix(in srgb, var(--default-color), transparent 25%);
    font-size: 15px;
    line-height: 1.6;
    padding-left: 24px;
}

.itp-chip-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.itp-chip {
    display: inline-flex;
    align-items: center;
    padding: 0.3rem 0.65rem;
    border-radius: 999px;
    background: color-mix(in srgb, var(--accent-color), transparent 96%);
    border: 1px solid color-mix(in srgb, var(--accent-color), transparent 90%);
    color: color-mix(in srgb, var(--default-color), transparent 18%);
    font-size: 0.78rem;
    line-height: 1.2;
    font-weight: 600;
    white-space: nowrap;
}

.itp-map-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
}

.itp-station-booking-btn {
    margin-top: auto;
}

.itp-surface-card {
    height: 100%;
    padding: 20px;
    background: var(--surface-color);
    border-radius: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.08);
}

.itp-surface-card--light {
    height: 100%;
    background: var(--surface-color);
    border-radius: 10px;
    margin-right: 5px;
    padding: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.08);
}

.itp-surface-card .station-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 10px 10px 0 0;
}

.itp-station-detail-row .itp-station-detail-icon {
    width: 18px;
    min-width: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    color: var(--brand-green);
}

.cms-page {
    padding-top: 128px;
}

.cms-page-title {
    margin-bottom: 24px;
}

.cms-page-title h1 {
    margin: 0;
    font-size: 2rem;
    font-weight: 700;
    color: var(--heading-color);
}

.cms-page-card {
    max-width: 980px;
    margin: 0 auto;
}

.cms-page-content {
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    line-height: 1.75;
    font-size: 1rem;
}

.cms-page-content h1,
.cms-page-content h2,
.cms-page-content h3,
.cms-page-content h4 {
    color: var(--heading-color);
    margin-top: 1.25rem;
    margin-bottom: 0.75rem;
}

.cms-page-content p {
    margin-bottom: 0.9rem;
}

.cms-page-content ul,
.cms-page-content ol {
    margin-bottom: 1rem;
    padding-left: 1.25rem;
}

.itp-error-page {
    position: relative;
    min-height: calc(100vh - 180px);
    padding: 132px 0 72px;
    background:
        radial-gradient(700px 360px at 8% 12%, color-mix(in srgb, var(--accent-color), transparent 88%) 0%, transparent 72%),
        radial-gradient(640px 320px at 94% 22%, color-mix(in srgb, var(--brand-green), transparent 90%) 0%, transparent 68%),
        linear-gradient(180deg, #f7fbff 0%, #eef4fb 52%, #ffffff 100%);
    overflow: hidden;
}

.itp-error-page::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        repeating-linear-gradient(0deg, color-mix(in srgb, var(--accent-color), transparent 96%) 0 1px, transparent 1px 28px),
        repeating-linear-gradient(90deg, color-mix(in srgb, var(--accent-color), transparent 96%) 0 1px, transparent 1px 28px);
    opacity: 0.4;
    pointer-events: none;
}

.itp-error-page .container {
    position: relative;
    z-index: 1;
}

.itp-error-shell {
    position: relative;
    border-radius: 28px;
    border: 1px solid color-mix(in srgb, var(--accent-color), transparent 88%);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 24px 80px rgba(20, 68, 143, 0.12);
    backdrop-filter: blur(10px);
    overflow: hidden;
}

.itp-error-shell::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(20, 68, 143, 0.05), rgba(85, 176, 69, 0.04));
    pointer-events: none;
}

.itp-error-content,
.itp-error-aside {
    position: relative;
    z-index: 1;
    padding: 48px;
}

.itp-error-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    padding: 0.5rem 1rem;
    border-radius: 999px;
    background: color-mix(in srgb, var(--accent-color), transparent 92%);
    color: var(--accent-color);
    font-size: 0.95rem;
    font-weight: 700;
}

.itp-error-code {
    margin: 0 0 12px;
    font-size: clamp(4rem, 12vw, 7rem);
    line-height: 0.92;
    letter-spacing: -0.06em;
    color: var(--heading-color);
}

.itp-error-title {
    margin-bottom: 16px;
    font-size: clamp(2rem, 4vw, 3.1rem);
    line-height: 1.08;
    color: var(--default-color);
}

.itp-error-text {
    max-width: 46rem;
    margin-bottom: 28px;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    font-size: 1.05rem;
    line-height: 1.75;
}

.itp-error-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.itp-error-actions .btn {
    min-width: 210px;
    padding: 0.9rem 1.4rem;
    border-radius: 999px;
    font-weight: 700;
}

.itp-error-actions .btn-outline-primary {
    border-color: color-mix(in srgb, var(--accent-color), transparent 62%);
    color: var(--accent-color);
}

.itp-error-actions .btn-outline-primary:hover,
.itp-error-actions .btn-outline-primary:focus {
    color: var(--contrast-color);
    background: var(--accent-color);
    border-color: var(--accent-color);
}

.itp-error-aside {
    height: 100%;
    background:
        linear-gradient(180deg, rgba(20, 68, 143, 0.96) 0%, rgba(13, 45, 95, 0.98) 100%);
    color: #ffffff;
}

.itp-error-aside::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(85, 176, 69, 0.2) 0%, transparent 38%),
        radial-gradient(circle at 82% 78%, rgba(255, 255, 255, 0.12) 0%, transparent 28%);
    pointer-events: none;
}

.itp-error-panel-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.9rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.itp-error-panel-title {
    margin-bottom: 1rem;
    color: #ffffff;
    font-size: 1.75rem;
}

.itp-error-panel-text {
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.7;
}

.itp-error-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 14px;
}

.itp-error-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.itp-error-list i {
    color: #8fd47f;
    font-size: 1.1rem;
    line-height: 1.4;
}

.itp-error-list span {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.55;
}

.itp-footer {
    background-color: var(--background-color);
    color: var(--default-color);
    padding: 30px 0;
    font-size: 14px;
}

.itp-footer .credits {
    margin-top: 8px;
    font-size: 13px;
}

#itp-site-footer {
    margin-top: auto;
}

@media (max-width: 992px) {
    .itp-landing-hero .itp-hero-content,
    .itp-booking-hero .itp-hero-content {
        text-align: center;
        margin-bottom: 3rem;
    }

    .itp-landing-hero .itp-hero-content h1,
    .itp-booking-hero .itp-hero-content h1 {
        font-size: 2.5rem;
    }

    .itp-landing-hero .itp-hero-content .itp-hero-actions {
        justify-content: center;
    }

    .itp-landing-hero .itp-hero-stats {
        margin-top: 1.5rem;
    }

    .itp-landing-hero .itp-hero-stat {
        padding: 1.25rem;
    }

    .itp-about-section .itp-about-title {
        font-size: 1.8rem;
    }

    .itp-about-section .itp-media-stack .itp-secondary-image {
        width: 50%;
    }

    .itp-about-section .itp-media-stack .itp-badge {
        right: 0;
        top: 10px;
    }

    .itp-stations .itp-about-title {
        font-size: 1.1rem;
    }

    .itp-error-content,
    .itp-error-aside {
        padding: 36px;
    }

    .itp-error-page {
        padding-bottom: 56px;
    }
}

@media (max-width: 575px) {
    .itp-landing-hero .itp-hero-content h1,
    .itp-booking-hero .itp-hero-content h1 {
        font-size: 2rem;
    }

    .itp-landing-hero .itp-hero-badge,
    .itp-booking-hero .itp-hero-badge {
        font-size: 0.875rem;
    }

    .itp-services .itp-service-card {
        padding: 20px;
    }

    .itp-services .itp-service-card .itp-service-icon {
        width: 48px;
        height: 48px;
        margin-right: 16px;
        font-size: 22px;
    }

    .itp-surface-card,
    .itp-surface-card--light {
        padding: 20px;
        margin-right: 0;
    }

    .cms-page {
        padding-top: 112px;
    }

    .itp-error-page {
        padding-top: 110px;
    }

    .itp-error-shell {
        border-radius: 22px;
    }

    .itp-error-content,
    .itp-error-aside {
        padding: 24px;
    }

    .itp-error-actions .btn {
        width: 100%;
        min-width: 0;
    }

    .itp-error-title {
        font-size: 1.8rem;
    }
}
