/* KORT Landing Page Styles */
/* Based on app GlobalParameters.dart color scheme */

:root {
    /* Brand Colors */
    --cp-dark: #169C43;
    --cp-light: #8DBE41;
    --gradient-dark: #79C233;
    --gradient-light: #A0D553;
    --cp-text: #464646;
    --cp-subtext: #7F7F7F;
    --cp-gray: #F5F5F5;
    --cp-inactive: #A0A0A0;
    --cp-orange: #F9B039;

    /* Additional Colors */
    --white: #FFFFFF;
    --black: #000000;
    --overlay-dark: rgba(0, 0, 0, 0.6);

    /* Typography */
    --font-family: 'Quicksand', sans-serif;
    --font-title: 'Poppins', sans-serif;

    /* Spacing */
    --section-padding: 100px 0;
    --container-padding: 0 24px;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.12);

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 24px;
    --radius-full: 50px;
}

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    font-size: 16px;
    font-weight: 500;
    line-height: 1.6;
    color: var(--cp-text);
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

ul {
    list-style: none;
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--container-padding);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--cp-text);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 64px;
    font-family: 'Avenir', 'Avenir Next', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 500;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all var(--transition-normal);
    white-space: nowrap;
}

.btn--primary {
    background: linear-gradient(135deg, var(--gradient-dark) 0%, var(--gradient-light) 100%);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(121, 194, 51, 0.3);
}

.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(121, 194, 51, 0.4);
}

.btn__arrow {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.btn--outline {
    background: transparent;
    color: var(--cp-dark);
    border: 2px solid var(--cp-dark);
}

.btn--outline:hover {
    background: var(--cp-dark);
    color: var(--white);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all var(--transition-normal);
}

.header.scrolled {
    box-shadow: var(--shadow-md);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    position: relative;
}

.nav__logo {
    display: flex;
    align-items: center;
}

.nav__logo-img {
    height: 20px;
    width: auto;
}

.nav__menu {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
}

.nav__list {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav__link {
    font-size: 16px;
    font-weight: 500;
    color: var(--cp-text);
    position: relative;
    padding: 8px 0;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gradient-light), var(--gradient-dark));
    transition: width var(--transition-normal);
}

.nav__link:hover::after,
.nav__link.active::after {
    width: 100%;
}

.nav__close {
    display: none;
}

.nav__actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.nav__toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    color: var(--cp-text);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: auto;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    overflow: visible;
    padding-top: 80px;
    padding-bottom: 60px;
}

.hero__video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--overlay-dark);
    z-index: 1;
}

.hero__content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 60px 8%;
}

.hero__text {
    color: var(--white);
    padding-top: 60px;
}

.hero__title {
    font-family: var(--font-title);
    font-size: 46px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 24px;
    line-height: 1.1;
}

.hero__subtitle {
    font-size: 20px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    line-height: 1.7;
}

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

.store-badge {
    display: inline-block;
    transition: transform var(--transition-normal);
}

.store-badge img {
    height: 50px;
    width: auto;
}

.store-badge:hover {
    transform: translateY(-3px);
}

.store-badge--large img {
    height: 60px;
}

.hero__phone {
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    position: relative;
    z-index: 10;
}

.hero__phone-image {
    width: 340px;
    height: auto;
    filter: drop-shadow(0 25px 50px rgba(0, 0, 0, 0.4));
    margin-bottom: -180px;
}

.hero__scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    font-weight: 500;
}

.hero__scroll-indicator {
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 12px;
    position: relative;
}

.hero__scroll-indicator::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 2px;
    animation: scroll-indicator 2s ease-in-out infinite;
}

@keyframes scroll-indicator {
    0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
    50% { transform: translateX(-50%) translateY(12px); opacity: 0.3; }
}

/* What is Kort Section */
.what-is-kort {
    padding: var(--section-padding);
    padding-top: 200px;
    background: var(--white);
}

.what-is-kort__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    padding: 0 4%;
}

.what-is-kort__image {
    position: relative;
}

.what-is-kort__img {
    width: 100%;
    max-width: 400px;
    aspect-ratio: 9 / 14;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.what-is-kort__decoration {
    position: absolute;
    bottom: -20px;
    left: -20px;
    width: 150px;
    height: 150px;
    border: 8px solid var(--cp-light);
    border-radius: 50% 0 50% 50%;
    z-index: -1;
}

.what-is-kort__title {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--cp-text);
}

.what-is-kort__description {
    font-size: 18px;
    color: var(--cp-subtext);
    line-height: 1.8;
    margin-bottom: 20px;
}

.what-is-kort__description strong {
    color: var(--cp-text);
    background-color: rgba(158, 212, 81, 0.6);
    font-weight: 700;
    padding: 2px 4px;
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
}

/* Phone Mockup */
.phone-mockup {
    position: relative;
    width: 280px;
}

.phone-mockup--large {
    width: 320px;
}

.phone-mockup__frame {
    background: #1a1a1a;
    border-radius: 40px;
    padding: 12px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.phone-mockup__screen {
    background: var(--white);
    border-radius: 32px;
    overflow: hidden;
    aspect-ratio: 9 / 19.5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.phone-mockup__placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    color: var(--cp-inactive);
}

.phone-mockup__placeholder span {
    font-size: 14px;
    font-weight: 500;
}

.phone-mockup__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Section Headers */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-title {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--cp-text);
}

.section-subtitle {
    font-size: 18px;
    color: var(--cp-subtext);
    line-height: 1.7;
}

/* Features Section */
.features {
    padding: var(--section-padding);
    background: var(--cp-gray);
}

.features__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.feature-card {
    background: var(--white);
    padding: 40px 32px;
    border-radius: var(--radius-md);
    text-align: center;
    transition: all var(--transition-normal);
    border: 1px solid transparent;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(141, 190, 65, 0.2);
}

.feature-card__icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, rgba(160, 213, 83, 0.15) 0%, rgba(121, 194, 51, 0.15) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: var(--cp-dark);
}

.feature-card__title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--cp-text);
}

.feature-card__description {
    font-size: 15px;
    color: var(--cp-subtext);
    line-height: 1.6;
}

/* App Preview Section */
.app-preview {
    padding: var(--section-padding);
    background: var(--white);
}

.app-preview__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    padding: 0 8%;
}

.app-preview__text {
    max-width: 500px;
}

.app-preview__text .section-title {
    text-align: left;
    margin-bottom: 20px;
}

.app-preview__text .section-subtitle {
    text-align: left;
    margin-bottom: 32px;
}

.app-preview__list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.app-preview__list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    color: var(--cp-text);
}

.app-preview__list svg {
    color: var(--cp-dark);
    flex-shrink: 0;
}

.app-preview__phones {
    display: flex;
    justify-content: center;
}

.app-preview__phone-image {
    width: 320px;
    height: auto;
    filter: drop-shadow(0 25px 50px rgba(0, 0, 0, 0.2));
}

/* How It Works Section */
.how-it-works {
    padding: var(--section-padding);
    background: var(--cp-gray);
}

.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.step {
    text-align: center;
    position: relative;
}

.step::after {
    content: '';
    position: absolute;
    top: 40px;
    right: -20px;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--gradient-light), var(--gradient-dark));
}

.step:last-child::after {
    display: none;
}

.step__number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--gradient-light) 0%, var(--gradient-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 32px;
    font-weight: 700;
    color: var(--white);
    box-shadow: 0 8px 24px rgba(121, 194, 51, 0.3);
}

.step__content {
    padding: 0 16px;
}

.step__title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--cp-text);
}

.step__description {
    font-size: 15px;
    color: var(--cp-subtext);
    line-height: 1.6;
}

/* Premium Section */
.premium {
    padding: var(--section-padding);
    background: var(--white);
}

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

.premium-card {
    background: linear-gradient(135deg, rgba(160, 213, 83, 0.08) 0%, rgba(121, 194, 51, 0.08) 100%);
    padding: 32px 24px;
    border-radius: var(--radius-md);
    text-align: center;
    border: 1px solid rgba(141, 190, 65, 0.2);
    transition: all var(--transition-normal);
}

.premium-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--cp-light);
}

.premium-card__icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--gradient-light) 0%, var(--gradient-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--white);
}

.premium-card__title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--cp-text);
}

.premium-card__description {
    font-size: 14px;
    color: var(--cp-subtext);
    line-height: 1.5;
}

/* Stats Section */
.stats {
    padding: 80px 24px;
    background: linear-gradient(135deg, var(--gradient-dark) 0%, var(--cp-dark) 100%);
}

.stats__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    text-align: center;
}

.stat {
    color: var(--white);
}

.stat__number {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1;
}

.stat__label {
    font-size: 18px;
    font-weight: 500;
    opacity: 0.9;
}

/* CTA Section */
.cta {
    padding: var(--section-padding);
    background: var(--cp-gray);
}

.cta__content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta__title {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--cp-text);
}

.cta__subtitle {
    font-size: 18px;
    color: var(--cp-subtext);
    margin-bottom: 40px;
}

.cta__buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: var(--white);
    padding: 80px 0 40px;
}

.footer__content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer__brand {
    max-width: 300px;
}

.footer__logo {
    height: 56px;
    width: auto;
    margin-bottom: 20px;
}

.footer__tagline {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    padding-left: 4px;
}

.footer__heading {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--white);
}

.footer__links ul {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer__links a {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    transition: color var(--transition-fast);
}

.footer__links a:hover {
    color: var(--gradient-light);
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-link {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all var(--transition-normal);
}

.social-link:hover {
    background: linear-gradient(135deg, var(--gradient-light) 0%, var(--gradient-dark) 100%);
    transform: translateY(-3px);
}

.footer__bottom {
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer__bottom p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

/* Animations */
[data-aos="fade-up"] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos="fade-up"].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

[data-aos="zoom-in"] {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos="zoom-in"].aos-animate {
    opacity: 1;
    transform: scale(1);
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .hero__content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .hero__title {
        font-size: 42px;
    }

    .hero__buttons {
        justify-content: center;
    }

    .hero__phone {
        order: -1;
        justify-content: center;
    }

    .hero__phone-image {
        width: 280px;
        margin-bottom: -120px;
    }

    .what-is-kort {
        padding-top: 160px;
    }

    .what-is-kort__content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 60px;
    }

    .what-is-kort__image {
        order: -1;
        display: flex;
        justify-content: center;
    }

    .what-is-kort__img {
        max-width: 350px;
    }

    .features__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .premium__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .app-preview__content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 60px;
    }

    .app-preview__text {
        max-width: 100%;
    }

    .app-preview__text .section-title,
    .app-preview__text .section-subtitle {
        text-align: center;
    }

    .app-preview__list {
        align-items: center;
    }

    .app-preview__phones {
        order: -1;
    }

    .footer__content {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .footer__brand {
        max-width: 100%;
    }
}

@media (max-width: 900px) {
    :root {
        --section-padding: 80px 0;
    }

    .nav__menu {
        position: fixed;
        top: 0;
        right: -100%;
        left: auto;
        transform: none;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        justify-content: center;
        padding: 40px;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
        transition: right var(--transition-normal);
        z-index: 1001;
    }

    .nav__menu.show-menu {
        right: 0;
    }

    .nav__list {
        flex-direction: column;
        gap: 32px;
    }

    .nav__link {
        font-size: 20px;
    }

    .nav__close {
        display: block;
        position: absolute;
        top: 24px;
        right: 24px;
        background: none;
        border: none;
        cursor: pointer;
        color: var(--cp-text);
    }

    .nav__toggle {
        display: block;
    }

    .nav__actions .btn {
        display: none;
    }

    .hero {
        min-height: auto;
        padding: 120px 0 80px;
    }

    .hero__phone {
        z-index: 1;
    }

    .hero__phone-image {
        margin-bottom: 0;
    }

    .hero__text {
        z-index: 2;
    }

    .hero__title {
        font-size: 32px;
    }

    .hero__subtitle {
        font-size: 16px;
    }

    .hero__scroll {
        display: none;
    }

    .section-title {
        font-size: 32px;
    }

    .what-is-kort {
        padding-top: 140px;
    }

    .what-is-kort__title {
        font-size: 32px;
    }

    .what-is-kort__description {
        font-size: 16px;
    }

    .what-is-kort__img {
        max-width: 300px;
    }

    .what-is-kort__decoration {
        width: 100px;
        height: 100px;
        border-width: 6px;
        bottom: -15px;
        left: -15px;
    }

    .features__grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .feature-card {
        padding: 32px 24px;
    }

    .premium__grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .premium-card {
        padding: 24px 20px;
    }

    .steps {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .step::after {
        display: none;
    }

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

    .stat__number {
        font-size: 48px;
    }

    .cta__title {
        font-size: 32px;
    }

    .footer__content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .footer__brand {
        max-width: 100%;
    }

    .social-links {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero__title {
        font-size: 28px;
    }

    .hero__phone-image {
        width: 240px;
    }

    .what-is-kort {
        padding-top: 120px;
    }

    .what-is-kort__img {
        max-width: 260px;
    }

    .btn {
        padding: 12px 32px;
        font-size: 15px;
    }

    .store-badge img {
        height: 44px;
    }

    .store-badge--large img {
        height: 50px;
    }
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }

.hidden { display: none; }
.visible { display: block; }

/* Legal Pages */
.legal-page {
    padding-top: 120px;
    padding-bottom: 80px;
    min-height: 100vh;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
}

.legal-content h1 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--cp-text);
}

.legal-content .legal-date {
    font-size: 14px;
    color: var(--cp-subtext);
    margin-bottom: 40px;
}

.legal-content h2 {
    font-size: 22px;
    font-weight: 700;
    margin: 40px 0 16px;
    color: var(--cp-text);
}

.legal-content p {
    font-size: 16px;
    color: var(--cp-text);
    margin-bottom: 16px;
    line-height: 1.8;
}

.legal-content ul,
.legal-content ol {
    margin-bottom: 16px;
    padding-left: 24px;
}

.legal-content li {
    font-size: 16px;
    color: var(--cp-text);
    line-height: 1.8;
    margin-bottom: 8px;
    list-style: disc;
}

.legal-content ol li {
    list-style: decimal;
}

.legal-content a {
    color: var(--cp-dark);
    text-decoration: underline;
}

.legal-content a:hover {
    color: var(--gradient-dark);
}

.legal-content strong {
    font-weight: 600;
}

/* Legal Pages Responsive */
@media (max-width: 900px) {
    .legal-page {
        padding-top: 100px;
        padding-bottom: 60px;
    }

    .legal-content h1 {
        font-size: 32px;
    }

    .legal-content h2 {
        font-size: 20px;
        margin: 32px 0 12px;
    }

    .legal-content p,
    .legal-content li {
        font-size: 15px;
    }
}
