*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --navy-950: #0a1628;
    --navy-900: #0f2140;
    --navy-800: #1a3260;
    --navy-700: #1e3a5f;
    --navy-600: #264a7c;
    --navy-500: #2d5a94;
    --gold-500: #d4a843;
    --gold-400: #e0bc5e;
    --gold-300: #ecc97a;
    --cream-50: #faf8f4;
    --cream-100: #f5f0e8;
    --cream-200: #efe8da;
    --sand-100: #f0ebe0;
    --sand-200: #e8e0d0;
    --text-dark: #1a1a2e;
    --text-muted: #4a4a5a;
    --text-light: #6b6b7b;
    --white: #ffffff;
    --shadow-sm: 0 1px 3px rgba(15, 33, 64, 0.06);
    --shadow-md: 0 4px 20px rgba(15, 33, 64, 0.08);
    --shadow-lg: 0 8px 40px rgba(15, 33, 64, 0.12);
    --shadow-xl: 0 16px 60px rgba(15, 33, 64, 0.14);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text-dark);
    background: var(--cream-50);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', Georgia, serif;
    line-height: 1.2;
    font-weight: 600;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ========== NAVIGATION ========== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(250, 248, 244, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(30, 58, 95, 0.06);
    transition: var(--transition);
}

.nav.scrolled {
    background: rgba(250, 248, 244, 0.95);
    box-shadow: var(--shadow-sm);
}

.nav__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav__brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--navy-800);
}

.nav__logo {
    color: var(--navy-800);
}

.nav__brand-accent {
    color: var(--gold-500);
}

.nav__links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav__link {
    padding: 8px 16px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-muted);
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.nav__link:hover {
    color: var(--navy-800);
    background: rgba(30, 58, 95, 0.06);
}

.nav__cta {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--navy-800);
    color: var(--white);
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.nav__cta:hover {
    background: var(--navy-700);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav__toggle span {
    width: 22px;
    height: 2px;
    background: var(--navy-800);
    border-radius: 2px;
    transition: var(--transition);
}

.nav__toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav__toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav__toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ========== HERO ========== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(160deg, #0a1628 0%, #1a3260 40%, #264a7c 100%);
    overflow: hidden;
    padding: 120px 24px 80px;
}

.hero__bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero__gradient {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse 80% 60% at 20% 80%, rgba(212, 168, 67, 0.12) 0%, transparent 60%),
        radial-gradient(ellipse 60% 50% at 80% 20%, rgba(42, 90, 148, 0.3) 0%, transparent 60%);
}

.hero__pattern {
    position: absolute;
    inset: 0;
    opacity: 0.04;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero__inner {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(212, 168, 67, 0.15);
    border: 1px solid rgba(212, 168, 67, 0.3);
    border-radius: 100px;
    color: var(--gold-300);
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 32px;
}

.hero__title {
    font-size: clamp(2.4rem, 5.5vw, 4.2rem);
    color: var(--white);
    font-weight: 700;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.hero__title-accent {
    color: var(--gold-400);
    font-style: italic;
}

.hero__subtitle {
    font-size: clamp(1.05rem, 2vw, 1.25rem);
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto 40px;
}

.hero__actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 56px;
}

.hero__trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.hero__trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    font-weight: 500;
}

.hero__trust-item svg {
    color: var(--gold-400);
}

.hero__wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    color: var(--cream-50);
}

/* ========== BUTTONS ========== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.btn--primary {
    background: var(--navy-800);
    color: var(--white);
}

.btn--primary:hover {
    background: var(--navy-700);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn--outline {
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255, 255, 255, 0.3);
}

.btn--outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.btn--outline-light {
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255, 255, 255, 0.4);
}

.btn--outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.btn--gold {
    background: var(--gold-500);
    color: var(--navy-950);
}

.btn--gold:hover {
    background: var(--gold-400);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn--lg {
    padding: 16px 32px;
    font-size: 1rem;
}

.btn--full {
    width: 100%;
}

/* ========== SECTION STYLES ========== */
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--gold-500);
    margin-bottom: 16px;
}

.section-label::before {
    content: '';
    width: 24px;
    height: 2px;
    background: var(--gold-500);
    border-radius: 2px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--navy-900);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.section-title-accent {
    color: var(--gold-500);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 560px;
    line-height: 1.7;
}

/* ========== SERVICES ========== */
.services {
    padding: 100px 0;
    background: var(--cream-50);
}

.services .container {
    text-align: center;
}

.services .section-subtitle {
    margin: 0 auto 56px;
}

.services__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    border: 1px solid rgba(30, 58, 95, 0.06);
    transition: var(--transition);
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.card__icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(30, 58, 95, 0.08) 0%, rgba(212, 168, 67, 0.1) 100%);
    border-radius: var(--radius-md);
    color: var(--navy-800);
    margin-bottom: 20px;
}

.card__title {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--navy-900);
    margin-bottom: 12px;
}

.card__body {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ========== ABOUT ========== */
.about {
    padding: 100px 0;
    background: var(--cream-100);
}

.about__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.about__text {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 20px;
}

.about__stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}

.stat {
    text-align: left;
}

.stat__number {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--navy-800);
    line-height: 1;
    margin-bottom: 6px;
}

.stat__label {
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 500;
}

.about__image {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.about__image img {
    width: 100%;
    height: 640px;
    object-fit: cover;
    border-radius: var(--radius-xl);
}

.about__image-accent {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 120px;
    height: 120px;
    background: var(--gold-500);
    border-radius: var(--radius-lg);
    opacity: 0.2;
}

/* ========== WHY ========== */
.why {
    padding: 100px 0;
    background: var(--cream-50);
}

.why__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.why__list {
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin-top: 40px;
}

.why__item {
    display: flex;
    gap: 20px;
}

.why__item-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--navy-800);
    color: var(--gold-400);
    border-radius: var(--radius-sm);
}

.why__item-title {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--navy-900);
    margin-bottom: 4px;
}

.why__item-text {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.why__visual {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.why__visual-card {
    padding: 36px 24px;
    background: var(--white);
    border-radius: var(--radius-lg);
    text-align: center;
    border: 1px solid rgba(30, 58, 95, 0.06);
    transition: var(--transition);
}

.why__visual-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.why__visual-card svg {
    color: var(--navy-800);
    margin: 0 auto 16px;
}

.why__visual-number {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--navy-800);
    margin-bottom: 6px;
}

.why__visual-label {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.4;
}

.why__visual-card--alt {
    background: var(--navy-800);
    border-color: transparent;
}

.why__visual-card--alt svg {
    color: var(--gold-400);
}

.why__visual-card--alt .why__visual-number {
    color: var(--white);
}

.why__visual-card--alt .why__visual-label {
    color: rgba(255, 255, 255, 0.6);
}

/* ========== COVERAGE ========== */
.coverage {
    padding: 100px 0;
    background: var(--cream-100);
}

.coverage__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.coverage__text {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 32px;
}

.coverage__list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 36px;
}

.coverage__list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-dark);
}

.coverage__list li svg {
    color: var(--gold-500);
}

.coverage__map {
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.map-placeholder {
    width: 100%;
    height: 420px;
    background: linear-gradient(135deg, var(--navy-800) 0%, var(--navy-600) 100%);
    border-radius: var(--radius-xl);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: var(--white);
}

.map-placeholder svg {
    color: var(--gold-400);
}

.map-placeholder__text {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 600;
}

.map-placeholder__address {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
}

/* ========== CONTACT ========== */
.contact {
    padding: 100px 0;
    background: var(--cream-50);
}

.contact__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.contact__text {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 40px;
}

.contact__info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact__info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact__info-icon {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border: 1px solid rgba(30, 58, 95, 0.08);
    border-radius: var(--radius-md);
    color: var(--navy-800);
}

.contact__info-label {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-light);
    margin-bottom: 2px;
}

.contact__info-value {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-dark);
    line-height: 1.5;
}

.contact__info-item a:hover {
    color: var(--navy-800);
}

.contact__form-wrapper {
    position: sticky;
    top: 100px;
}

.contact__form-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 40px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(30, 58, 95, 0.06);
}

.contact__form-title {
    font-size: 1.5rem;
    color: var(--navy-900);
    margin-bottom: 28px;
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 12px 16px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    color: var(--text-dark);
    background: var(--cream-50);
    border: 1.5px solid rgba(30, 58, 95, 0.1);
    border-radius: var(--radius-sm);
    transition: var(--transition);
    outline: none;
}

.form-input:focus,
.form-textarea:focus {
    border-color: var(--navy-600);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(30, 58, 95, 0.08);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: var(--text-light);
}

.form-textarea {
    resize: vertical;
    min-height: 100px;
}

.form-success {
    display: none;
    text-align: center;
    padding: 40px 20px;
}

.form-success svg {
    color: #22c55e;
    margin: 0 auto 16px;
}

.form-success h4 {
    font-size: 1.3rem;
    color: var(--navy-900);
    margin-bottom: 8px;
}

.form-success p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ========== CTA ========== */
.cta {
    padding: 100px 0;
    background: linear-gradient(160deg, #0a1628 0%, #1a3260 50%, #264a7c 100%);
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.05;
    background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='1' fill-rule='evenodd'%3E%3Cpath d='M0 40L40 0H20L0 20M40 40V20L20 40'/%3E%3C/g%3E%3C/svg%3E");
}

.cta__inner {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.cta__title {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    color: var(--white);
    max-width: 480px;
}

.cta__text {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.65);
    margin-top: 12px;
    max-width: 400px;
}

.cta__actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* ========== FOOTER ========== */
.footer {
    background: var(--navy-950);
    color: var(--white);
    padding: 64px 0 0;
}

.footer__inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
}

.footer__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 16px;
}

.footer__logo span {
    color: var(--gold-400);
}

.footer__tagline {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
    max-width: 280px;
}

.footer__col-title {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gold-400);
    margin-bottom: 20px;
}

.footer__col a,
.footer__col span {
    display: block;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.55);
    padding: 6px 0;
    transition: var(--transition);
}

.footer__col a:hover,
.footer__col span:hover {
    color: var(--white);
}

.footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 24px 0;
}

.footer__bottom p {
    text-align: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.35);
}

/* ========== MOBILE MENU ========== */
.mobile-menu {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(250, 248, 244, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 999;
    padding: 32px 24px;
    flex-direction: column;
    gap: 8px;
}

.mobile-menu.active {
    display: flex;
}

.mobile-menu a {
    padding: 16px 20px;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-dark);
    border-radius: var(--radius-sm);
}

.mobile-menu a:hover {
    background: rgba(30, 58, 95, 0.06);
    color: var(--navy-800);
}

.mobile-menu .nav__cta {
    margin-top: 16px;
    justify-content: center;
    padding: 16px 24px;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .services__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about__inner,
    .why__inner,
    .coverage__inner,
    .contact__inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .about__image img {
        height: 400px;
    }

    .footer__inner {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
    }
}

@media (max-width: 768px) {
    .nav__links {
        display: none;
    }

    .nav__toggle {
        display: flex;
    }

    .hero {
        padding: 100px 24px 60px;
        min-height: auto;
    }

    .hero__title {
        font-size: 2rem;
    }

    .hero__actions {
        flex-direction: column;
        width: 100%;
    }

    .hero__actions .btn {
        width: 100%;
    }

    .hero__trust {
        gap: 20px;
    }

    .services__grid {
        grid-template-columns: 1fr;
    }

    .about__stats {
        gap: 24px;
    }

    .why__visual {
        grid-template-columns: 1fr 1fr;
    }

    .cta__inner {
        flex-direction: column;
        text-align: center;
    }

    .cta__actions {
        flex-direction: column;
        width: 100%;
    }

    .cta__actions .btn {
        width: 100%;
    }

    .contact__form-card {
        padding: 28px;
    }

    .footer__inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

@media (max-width: 480px) {
    .hero__badge {
        font-size: 0.75rem;
    }

    .about__stats {
        flex-direction: column;
        gap: 20px;
    }

    .why__visual {
        grid-template-columns: 1fr;
    }
}

/* ========== REDUCED MOTION ========== */
@media (prefers-reduced-motion: no-preference) {
    .card,
    .why__item,
    .why__visual-card,
    .contact__info-item {
        transition: var(--transition);
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        transition: none !important;
        animation: none !important;
    }

    html {
        scroll-behavior: auto;
    }
}
