.site-header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 60;
    width: 100%;
    height: 80px;
    background: rgba(247, 250, 253, .94);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid #c4c6d1;
    box-shadow: 0 1px 3px rgba(0, 25, 60, .08);
    font-family: Inter, Arial, sans-serif;
}

.site-header-inner {
    height: 100%;
    width: 100%;
    padding: 0 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-sizing: border-box;
}

.site-brand {
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.site-brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.site-brand-name {
    color: #00193c;
    font: 700 20px Montserrat, Arial, sans-serif;
}

.site-brand-sub {
    color: #5d5f5f;
    font: 600 8.5px Montserrat, Arial, sans-serif;
    letter-spacing: .16em;
    text-transform: uppercase;
    margin-top: 2px;
}

.site-logo {
    height: 60px;
    width: 60px;
    border-radius: 50%;
    display: inline-block;
    vertical-align: middle;
    object-fit: cover;
}

.site-nav-links {
    display: flex;
    align-items: center;
    gap: 24px;
}

.site-nav-link {
    color: #5d5f5f;
    font-size: 16px;
    text-decoration: none;
    transition: color .2s ease;
    border-bottom: 2px solid transparent;
    padding: 4px 0;
}

.site-nav-link:hover,
.site-nav-link.active {
    color: #00193c !important;
}

.site-nav-link.active {
    font-weight: 700;
    border-bottom-color: #e9c176;
}

.site-nav-dropdown {
    position: relative;
}

.site-nav-dropdown-toggle {
    appearance: none;
    border-left: 0;
    border-right: 0;
    border-top: 0;
    background: transparent;
    cursor: pointer;
    font-family: inherit;
}

.site-nav-dropdown-toggle::after {
    content: "";
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: 8px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: translateY(-2px) rotate(45deg);
}

.site-nav-dropdown-menu {
    position: absolute;
    z-index: 70;
    top: calc(100% + 14px);
    left: 50%;
    min-width: 180px;
    padding: 8px;
    border: 1px solid #c4c6d1;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 18px 38px rgba(0, 25, 60, .16);
    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, 8px);
    transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}

.site-nav-dropdown:hover .site-nav-dropdown-menu,
.site-nav-dropdown:focus-within .site-nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
}

.site-nav-dropdown-link {
    display: block;
    padding: 10px 12px;
    border-radius: 6px;
    color: #5d5f5f;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: background .18s ease, color .18s ease;
}

.site-nav-dropdown-link:hover,
.site-nav-dropdown-link.active {
    background: #f7fafd;
    color: #00193c;
}

.site-nav-dropdown-link.active {
    box-shadow: inset 3px 0 0 #e9c176;
}

.site-header-cta {
    padding: 12px 20px;
    border-radius: 4px;
    background: #00193c;
    color: #fff;
    font: 700 14px Inter, Arial, sans-serif;
    text-decoration: none;
}

.site-mobile-toggle {
    display: none;
}

.site-mobile-menu {
    display: none;
}

.site-scroll-progress {
    position: fixed;
    top: 80px;
    left: 0;
    z-index: 51;
    width: 100%;
    height: 4px;
    overflow: hidden;
    background: transparent;
    opacity: 1;
    pointer-events: none;
}

.site-scroll-progress span {
    display: block;
    width: 0;
    height: 100%;
    border-radius: 999px;
    background: linear-gradient(90deg, #ffdea5, #f2bd41);
    box-shadow: 0 0 12px rgba(242, 189, 65, .65);
    transition: width .12s linear;
}

.destination-page .max-w-\[1280px\] {
    box-sizing: border-box;
    width: 100% !important;
    max-width: 100% !important;
}

.site-footer {
    width: 100%;
    box-sizing: border-box;
    padding: 80px 0 24px;
    background: #00193c;
    color: #fff;
    font-family: Inter, Arial, sans-serif;
}

.site-footer-grid {
    width: 100%;
    box-sizing: border-box;
    padding: 0 64px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 80px;
}

.site-footer-brand {
    color: #ffdea5 !important;
    font: 700 20px Montserrat, Arial, sans-serif;
    text-decoration: none;
}

.site-footer-copy {
    max-width: 320px;
    margin: 16px 0 0;
    color: #cbd5e1;
    line-height: 1.6;
}

.site-footer-social {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.site-footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-width: 136px;
    min-height: 44px;
    padding: 0 20px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 999px;
    color: #cbd5e1;
    font-weight: 800;
    font-size: 14px;
    white-space: nowrap;
    text-decoration: none;
    transition: color .2s ease, border-color .2s ease, background .2s ease, transform .2s ease;
}

.site-footer-social svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
    flex: 0 0 auto;
}

.site-footer-social-label {
    display: inline-block;
}

.site-footer-social a:hover {
    color: #00193c;
    border-color: #ffdea5;
    background: #ffdea5;
    transform: translateY(-2px);
}

.site-footer-title {
    margin: 0 0 16px;
    color: #e9c176;
    font-size: 14px;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.site-footer-links {
    margin: 0;
    padding: 0;
    list-style: none;
}

.site-footer-links li {
    margin: 0 0 12px;
}

.site-footer a {
    color: #cbd5e1;
    text-decoration: none;
}

.site-footer a:hover {
    color: #ffdea5;
}

.site-footer-contact {
    display: inline-block;
    margin-top: 12px;
}

.site-footer-enquiry {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
    min-height: 44px;
    padding: 0 22px;
    border-radius: 10px;
    background: #ffdea5;
    color: #00193c !important;
    font-weight: 800;
    box-shadow: 0 10px 22px rgba(0, 0, 0, .18);
    transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}

.site-footer-enquiry:hover {
    color: #00193c !important;
    background: #f3c978;
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(0, 0, 0, .22);
}

.site-footer-bottom {
    margin: 48px 64px 0;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, .18);
    color: #94a3b8;
    text-align: center;
    font-size: 12px;
}

.site-ad-lock {
    overflow: hidden;
}

.site-ad-popup {
    position: fixed;
    inset: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .22s ease, visibility .22s ease;
    font-family: Inter, Arial, sans-serif;
}

.site-ad-popup.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.site-ad-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 13, 31, .72);
    backdrop-filter: blur(8px);
}

.site-ad-card {
    position: relative;
    width: min(900px, 100%);
    max-height: calc(100vh - 48px);
    overflow: auto;
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, .35);
    transform: translateY(14px) scale(.98);
    transition: transform .22s ease;
}

.site-ad-popup.is-visible .site-ad-card {
    transform: translateY(0) scale(1);
}

.site-ad-close {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 2;
    width: 38px;
    height: 38px;
    border: 0;
    border-radius: 999px;
    background: rgba(0, 25, 60, .9);
    color: #fff;
    font-size: 26px;
    line-height: 1;
    cursor: pointer;
}

.site-ad-media {
    position: relative;
    min-height: 430px;
    background: #00193c;
}

.site-ad-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 25, 60, .05), rgba(0, 25, 60, .8));
}

.site-ad-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.site-ad-badge {
    position: absolute;
    left: 22px;
    bottom: 22px;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 14px;
    border-radius: 999px;
    background: #ffdea5;
    color: #00193c;
    font-weight: 800;
    font-size: 12px;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.site-ad-content {
    padding: 48px;
}

.site-ad-eyebrow {
    margin: 0 0 12px;
    color: #b4914b;
    font-weight: 800;
    font-size: 12px;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.site-ad-content h2 {
    margin: 0;
    color: #00193c;
    font: 800 34px/1.1 Montserrat, Arial, sans-serif;
}

.site-ad-copy {
    margin: 18px 0 0;
    color: #43474f;
    line-height: 1.65;
}

.site-ad-list {
    margin: 22px 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 12px;
    color: #181c1e;
    font-weight: 700;
}

.site-ad-list li {
    position: relative;
    padding-left: 28px;
}

.site-ad-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: .42em;
    width: 14px;
    height: 14px;
    border-radius: 999px;
    background: #ffdea5;
    box-shadow: inset 0 0 0 4px #00193c;
}

.site-ad-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.site-ad-primary,
.site-ad-secondary {
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    border-radius: 6px;
    font-weight: 800;
    text-decoration: none;
}

.site-ad-primary {
    background: #00193c;
    color: #fff !important;
}

.site-ad-secondary {
    border: 1px solid #c4c6d1;
    background: #fff;
    color: #00193c;
    cursor: pointer;
}

.bento-card:has(> .material-symbols-outlined:first-child + :is(h3, h4)),
.rounded-xl:has(> .material-symbols-outlined:first-child + :is(h3, h4)),
.rounded-lg:has(> .material-symbols-outlined:first-child + :is(h3, h4)),
.premium-shadow:has(> .material-symbols-outlined:first-child + :is(h3, h4)),
.bento-card:has(> :first-child .material-symbols-outlined):has(> :first-child + :is(h3, h4)),
.rounded-xl:has(> :first-child .material-symbols-outlined):has(> :first-child + :is(h3, h4)),
.rounded-lg:has(> :first-child .material-symbols-outlined):has(> :first-child + :is(h3, h4)),
.premium-shadow:has(> :first-child .material-symbols-outlined):has(> :first-child + :is(h3, h4)),
.destination-page .rounded-xl:has(> .material-symbols-outlined:first-child + div > h3) {
    display: grid !important;
    grid-template-columns: auto minmax(0, 1fr);
    align-content: start;
    align-items: start;
    column-gap: 14px;
    row-gap: 8px;
    text-align: left !important;
}

.bento-card:has(> .material-symbols-outlined:first-child + :is(h3, h4)) > .material-symbols-outlined,
.rounded-xl:has(> .material-symbols-outlined:first-child + :is(h3, h4)) > .material-symbols-outlined,
.rounded-lg:has(> .material-symbols-outlined:first-child + :is(h3, h4)) > .material-symbols-outlined,
.premium-shadow:has(> .material-symbols-outlined:first-child + :is(h3, h4)) > .material-symbols-outlined,
.bento-card:has(> :first-child .material-symbols-outlined):has(> :first-child + :is(h3, h4)) > :first-child,
.rounded-xl:has(> :first-child .material-symbols-outlined):has(> :first-child + :is(h3, h4)) > :first-child,
.rounded-lg:has(> :first-child .material-symbols-outlined):has(> :first-child + :is(h3, h4)) > :first-child,
.premium-shadow:has(> :first-child .material-symbols-outlined):has(> :first-child + :is(h3, h4)) > :first-child,
.destination-page .rounded-xl:has(> .material-symbols-outlined:first-child + div > h3) > .material-symbols-outlined {
    grid-column: 1;
    grid-row: 1;
    margin: 0 !important;
    line-height: 1;
}

.bento-card:has(> .material-symbols-outlined:first-child + :is(h3, h4)) > :is(h3, h4),
.rounded-xl:has(> .material-symbols-outlined:first-child + :is(h3, h4)) > :is(h3, h4),
.rounded-lg:has(> .material-symbols-outlined:first-child + :is(h3, h4)) > :is(h3, h4),
.premium-shadow:has(> .material-symbols-outlined:first-child + :is(h3, h4)) > :is(h3, h4),
.bento-card:has(> :first-child .material-symbols-outlined):has(> :first-child + :is(h3, h4)) > :is(h3, h4),
.rounded-xl:has(> :first-child .material-symbols-outlined):has(> :first-child + :is(h3, h4)) > :is(h3, h4),
.rounded-lg:has(> :first-child .material-symbols-outlined):has(> :first-child + :is(h3, h4)) > :is(h3, h4),
.premium-shadow:has(> :first-child .material-symbols-outlined):has(> :first-child + :is(h3, h4)) > :is(h3, h4),
.destination-page .rounded-xl:has(> .material-symbols-outlined:first-child + div > h3) > div:first-of-type {
    grid-column: 2;
    grid-row: 1;
    min-width: 0;
}

.bento-card:has(> .material-symbols-outlined:first-child + :is(h3, h4)) > :is(h3, h4),
.rounded-xl:has(> .material-symbols-outlined:first-child + :is(h3, h4)) > :is(h3, h4),
.rounded-lg:has(> .material-symbols-outlined:first-child + :is(h3, h4)) > :is(h3, h4),
.premium-shadow:has(> .material-symbols-outlined:first-child + :is(h3, h4)) > :is(h3, h4),
.bento-card:has(> :first-child .material-symbols-outlined):has(> :first-child + :is(h3, h4)) > :is(h3, h4),
.rounded-xl:has(> :first-child .material-symbols-outlined):has(> :first-child + :is(h3, h4)) > :is(h3, h4),
.rounded-lg:has(> :first-child .material-symbols-outlined):has(> :first-child + :is(h3, h4)) > :is(h3, h4),
.premium-shadow:has(> :first-child .material-symbols-outlined):has(> :first-child + :is(h3, h4)) > :is(h3, h4),
.destination-page .rounded-xl:has(> .material-symbols-outlined:first-child + div > h3) > div:first-of-type > h3 {
    margin-top: 2px !important;
    margin-bottom: 6px !important;
}

.bento-card:has(> .material-symbols-outlined:first-child + :is(h3, h4)) > :is(p, ul),
.rounded-xl:has(> .material-symbols-outlined:first-child + :is(h3, h4)) > :is(p, ul),
.rounded-lg:has(> .material-symbols-outlined:first-child + :is(h3, h4)) > :is(p, ul),
.premium-shadow:has(> .material-symbols-outlined:first-child + :is(h3, h4)) > :is(p, ul),
.bento-card:has(> :first-child .material-symbols-outlined):has(> :first-child + :is(h3, h4)) > :is(p, ul, div:nth-child(n+3)),
.rounded-xl:has(> :first-child .material-symbols-outlined):has(> :first-child + :is(h3, h4)) > :is(p, ul, div:nth-child(n+3)),
.rounded-lg:has(> :first-child .material-symbols-outlined):has(> :first-child + :is(h3, h4)) > :is(p, ul, div:nth-child(n+3)),
.premium-shadow:has(> :first-child .material-symbols-outlined):has(> :first-child + :is(h3, h4)) > :is(p, ul, div:nth-child(n+3)) {
    grid-column: 1 / -1;
    margin-top: 2px;
}

/* Contact and feature cards use the larger rounded-2xl variant. */
.rounded-2xl:has(> :first-child .material-symbols-outlined):has(> :first-child + :is(h3, h4)) {
    display: grid !important;
    grid-template-columns: auto minmax(0, 1fr);
    align-content: start;
    align-items: center;
    column-gap: 14px;
    row-gap: 10px;
    text-align: left !important;
}

.rounded-2xl:has(> :first-child .material-symbols-outlined):has(> :first-child + :is(h3, h4)) > :first-child {
    grid-column: 1;
    grid-row: 1;
    margin: 0 !important;
}

.rounded-2xl:has(> :first-child .material-symbols-outlined):has(> :first-child + :is(h3, h4)) > :is(h3, h4) {
    grid-column: 2;
    grid-row: 1;
    min-width: 0;
    margin: 0 !important;
}

.rounded-2xl:has(> :first-child .material-symbols-outlined):has(> :first-child + :is(h3, h4)) > :nth-child(n+3) {
    grid-column: 1 / -1;
    min-width: 0;
    margin-top: 4px;
}

.admissions-page .premium-shadow > div:first-child:has(> div:first-child .material-symbols-outlined):has(> div:first-child + h3) {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-content: start;
    align-items: center;
    column-gap: 14px;
    row-gap: 10px;
}

.admissions-page .premium-shadow > div:first-child:has(> div:first-child + h3) > div:first-child {
    grid-column: 1;
    grid-row: 1;
    margin: 0 !important;
}

.admissions-page .premium-shadow > div:first-child:has(> div:first-child + h3) > h3 {
    grid-column: 2;
    grid-row: 1;
    min-width: 0;
    margin: 0 !important;
}

.admissions-page .premium-shadow > div:first-child:has(> div:first-child + h3) > p {
    grid-column: 1 / -1;
}

@media (max-width: 767px) {
    .site-header {
        height: 64px;
    }

    .site-header-inner {
        padding: 0 16px;
        gap: 10px;
    }

    .site-brand-name {
        font-size: 14px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 190px;
    }

    .site-brand-sub {
        font-size: 7px;
        letter-spacing: .12em;
    }

    .site-logo {
        height: 40px;
        width: 40px;
    }

    .site-nav-links,
    .site-header-cta {
        display: none;
    }

    .site-mobile-toggle {
        width: 42px;
        height: 42px;
        display: inline-flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 5px;
        border: 1px solid #c4c6d1;
        border-radius: 8px;
        background: #fff;
        color: #00193c;
        cursor: pointer;
        flex: 0 0 auto;
    }

    .site-mobile-toggle span {
        width: 20px;
        height: 2px;
        border-radius: 999px;
        background: currentColor;
        transition: transform .2s ease, opacity .2s ease;
    }

    .site-header.mobile-open .site-mobile-toggle span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .site-header.mobile-open .site-mobile-toggle span:nth-child(2) {
        opacity: 0;
    }

    .site-header.mobile-open .site-mobile-toggle span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .site-mobile-menu {
        position: fixed;
        top: 64px;
        left: 0;
        right: 0;
        z-index: 59;
        display: grid;
        gap: 8px;
        max-height: 0;
        overflow: hidden;
        padding: 0 16px;
        border-bottom: 1px solid transparent;
        background: rgba(247, 250, 253, .98);
        box-shadow: 0 18px 36px rgba(0, 25, 60, 0);
        visibility: hidden;
        transition: max-height .25s ease, padding .25s ease, border-color .25s ease, box-shadow .25s ease, visibility .25s ease;
    }

    .site-header.mobile-open .site-mobile-menu {
        max-height: calc(100vh - 64px);
        overflow-y: auto;
        padding-top: 14px;
        padding-bottom: 16px;
        border-bottom-color: #c4c6d1;
        box-shadow: 0 18px 36px rgba(0, 25, 60, .16);
        visibility: visible;
    }

    .site-mobile-link,
    .site-mobile-cta {
        min-height: 44px;
        display: flex;
        align-items: center;
        padding: 0 14px;
        border-radius: 8px;
        color: #00193c;
        font: 700 14px Inter, Arial, sans-serif;
        text-decoration: none;
    }

    .site-mobile-link {
        background: #fff;
        border: 1px solid #e0e3e6;
    }

    .site-mobile-link.active {
        border-color: #e9c176;
        background: #fff7e8;
    }

    .site-mobile-group {
        padding: 10px;
        border: 1px solid #e0e3e6;
        border-radius: 10px;
        background: #fff;
    }

    .site-mobile-group-title {
        display: block;
        margin: 0 0 8px;
        color: #5d5f5f;
        font: 800 11px Inter, Arial, sans-serif;
        letter-spacing: .12em;
        text-transform: uppercase;
    }

    .site-mobile-destinations {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }

    .site-mobile-destinations .site-mobile-link {
        min-height: 40px;
        font-size: 13px;
    }

    .site-mobile-cta {
        justify-content: center;
        background: #00193c;
        color: #fff;
    }

    .site-scroll-progress {
        top: 64px;
    }

    .site-footer {
        padding-top: 48px;
    }

    .site-footer-grid {
        padding: 0 16px;
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .site-footer-bottom {
        margin: 32px 16px 0;
    }

    .site-ad-popup {
        padding: 16px;
        align-items: flex-end;
    }

    .site-ad-card {
        grid-template-columns: 1fr;
        max-height: calc(100vh - 32px);
    }

    .site-ad-media {
        min-height: 190px;
    }

    .site-ad-content {
        padding: 28px 20px 22px;
    }

    .site-ad-content h2 {
        font-size: 26px;
    }

    .site-ad-primary,
    .site-ad-secondary {
        width: 100%;
    }
}

@media (max-width: 767px) {
    .destination-page {
        padding-top: 64px !important;
    }

    .destination-page > section:first-child {
        height: calc(100svh - 64px) !important;
        min-height: calc(100svh - 64px) !important;
        padding: 0 !important;
        display: flex !important;
        align-items: flex-end !important;
        background: #00193c;
    }

    .destination-page > section:first-child > .absolute.inset-0.z-0 {
        overflow: hidden;
    }

    .destination-page > section:first-child > .absolute.inset-0.z-0 img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        object-position: center !important;
    }

    .destination-page > section:first-child > .absolute.inset-0.z-0 > div {
        background: linear-gradient(
            180deg,
            rgba(0, 25, 60, .48) 0%,
            rgba(0, 25, 60, .62) 42%,
            rgba(0, 25, 60, .98) 100%
        ) !important;
    }

    .destination-page > section:first-child > .relative.z-10 {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        padding: 0 16px 28px !important;
    }

    .destination-page > section:first-child .max-w-2xl,
    .destination-page > section:first-child .georgia-hero-copy {
        max-width: 100% !important;
    }

    .destination-page > section:first-child span.inline-block,
    .destination-page > section:first-child .georgia-kicker {
        width: fit-content;
        max-width: 100%;
        min-height: 28px;
        display: inline-flex !important;
        align-items: center;
        margin-bottom: 20px !important;
        padding: 0 14px !important;
        border-radius: 999px !important;
        background: #ffdea5 !important;
        color: #00193c !important;
        font-size: 11px !important;
        line-height: 1 !important;
        font-weight: 800 !important;
        letter-spacing: .08em !important;
        white-space: nowrap;
    }

    .destination-page > section:first-child h1,
    .destination-page > section:first-child .georgia-hero-title {
        margin-bottom: 18px !important;
        color: #ffffff !important;
        font-size: 36px !important;
        line-height: 1.18 !important;
        letter-spacing: 0 !important;
    }

    .destination-page > section:first-child p,
    .destination-page > section:first-child .georgia-hero-text {
        margin-bottom: 28px !important;
        color: #dbe6f4 !important;
        font-size: 16px !important;
        line-height: 1.58 !important;
        font-weight: 600 !important;
    }

    .destination-page > section:first-child .flex.gap-md,
    .destination-page > section:first-child .flex.flex-wrap.gap-md,
    .destination-page > section:first-child .georgia-hero-actions {
        width: 100% !important;
        display: flex !important;
    }

    .destination-page > section:first-child a[href*="booking"] {
        width: 100% !important;
        min-height: 46px;
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
        padding: 0 18px !important;
        border-radius: 8px !important;
        background: #ffdea5 !important;
        color: #00193c !important;
        box-shadow: none !important;
        font-size: 14px !important;
        font-weight: 800 !important;
        letter-spacing: .02em !important;
        text-align: center !important;
        transform: none !important;
    }
}

@media (max-width: 380px) {
    .destination-page > section:first-child h1,
    .destination-page > section:first-child .georgia-hero-title {
        font-size: 32px !important;
    }

    .destination-page > section:first-child p,
    .destination-page > section:first-child .georgia-hero-text {
        font-size: 15px !important;
    }
}
