:root {
    --bg-main: #050505;
    --bg-sec: #0f0f0f;
    --bg-card: #141414;
    --accent: #FF6B00;
    /* Dark Orange */
    --accent-glow: rgba(255, 107, 0, 0.4);
    --text-main: #ffffff;
    --text-sec: #d1d1d1;
    /* Lighter for better contrast */
    --border: rgba(255, 255, 255, 0.12);
    --nav-glass: rgba(5, 5, 5, 0.85);

    --font-head: 'Oswald', sans-serif;
    --font-body: 'Inter', sans-serif;

    --transition: cubic-bezier(0.16, 1, 0.3, 1);
    --container: 1400px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-main);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-head);
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.1;
    letter-spacing: 0.02em;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

p {
    color: var(--text-sec);
}

img,
video {
    max-width: 100%;
    display: block;
}

ul {
    list-style: none;
}

/* Utilities */
.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 2rem;
}

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

.mb-2 {
    margin-bottom: 1rem;
}

.mb-3 {
    margin-bottom: 2rem;
}

.mb-4 {
    margin-bottom: 3rem;
}

.mt-3 {
    margin-top: 2rem;
}

.mt-4 {
    margin-top: 3rem;
}

.section {
    padding: 6rem 0;
    position: relative;
    z-index: 2;
}

/* Video Background */
.video-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
}

.video-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg,
            rgba(5, 5, 5, 0.7) 0%,
            rgba(5, 5, 5, 0.4) 50%,
            var(--bg-main) 100%);
    pointer-events: none;
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: 0.3s;
    /* Glass Effect (Optional, can be solid) */
    background: linear-gradient(to bottom, rgba(5, 5, 5, 0.9) 0%, rgba(5, 5, 5, 0) 100%);
}

.nav.minimal {
    justify-content: center;
    /* Center the logo */
    padding: 2rem;
    background: transparent;
    border-bottom: none;
    position: absolute;
}

.nav.minimal .nav-right {
    display: none;
    /* Hide links and CTA */
}

/* Logo */
.logo img {
    height: 40px;
    width: auto;
    transition: 0.3s;
}

.nav.minimal .logo img {
    height: 90px;
    /* Bigger logo as requested */
}



.nav.scrolled {
    background: var(--nav-glass);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    padding: 1rem 2rem;
}

.logo img {
    height: 100px;
    /* Significantly increased */
    width: auto;
    object-fit: contain;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: var(--text-sec);
    position: relative;
}

.nav-links a:hover {
    color: var(--text-main);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: 0.3s var(--transition);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    display: inline-flex;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 2rem;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    transition: 0.3s var(--transition);
    cursor: pointer;
    font-family: var(--font-body);
}

.btn-primary {
    background: var(--accent);
    color: #fff;
    border: 1px solid var(--accent);
}

.btn-primary:hover {
    background: transparent;
    color: var(--accent);
    box-shadow: 0 0 20px var(--accent-glow);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--text-main);
    color: var(--text-main);
}

.btn-outline:hover {
    background: var(--text-main);
    color: var(--bg-main);
}

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1rem;
    min-width: 180px;
}

.btn-xl {
    padding: 1.2rem 3rem;
    font-size: 1.2rem;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 4rem;
}

.hero-content h1 {
    font-size: clamp(3rem, 7vw, 6.5rem);
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
    line-height: 0.95;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.hero-content .highlight {
    color: var(--accent);
}

.subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    max-width: 600px;
    margin: 0 auto 3rem;
    font-weight: 300;
}

.hero-cta {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

/* Marquee / Trusted By */
.trusted-by {
    background: var(--bg-main);
    padding: 2rem 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    overflow: hidden;
}

.section-label {
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-sec);
    letter-spacing: 0.2em;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.marquee-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.marquee {
    display: flex;
    gap: 4rem;
    white-space: nowrap;
    animation: scroll 20s linear infinite;
}

.marquee span {
    font-family: var(--font-head);
    font-size: 2rem;
    font-weight: 700;
    color: var(--bg-card);
    -webkit-text-stroke: 1px var(--text-sec);
    text-transform: uppercase;
    opacity: 0.5;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Services */
.section-header {
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    margin-bottom: 1rem;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.card {
    background: var(--bg-sec);
    padding: 3rem 2rem;
    border: 1px solid var(--border);
    transition: 0.3s var(--transition);
    position: relative;
    overflow: hidden;
}

.card:hover {
    border-color: var(--accent);
    transform: translateY(-5px);
}

.card-icon {
    font-family: var(--font-head);
    font-size: 4rem;
    color: var(--bg-card);
    -webkit-text-stroke: 1px var(--accent);
    opacity: 0.5;
    margin-bottom: 1.5rem;
    line-height: 1;
}

.card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

/* Works / Portfolio */
.works-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 300px;
    gap: 1.5rem;
}

.work-item {
    position: relative;
    background: var(--bg-card);
    overflow: hidden;
    cursor: pointer;
    border: 1px solid var(--border);
}

.work-item.vertical {
    grid-row: span 2;
    height: 100%;
}

.work-item.horizontal {
    grid-column: span 2;
}

.work-placeholder {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: 0.5s var(--transition);
    opacity: 0.6;
}

.work-item:hover .work-placeholder {
    transform: scale(1.05);
    opacity: 0.3;
}

.work-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem;
    z-index: 2;
    transform: translateY(20px);
    opacity: 0;
    transition: 0.3s var(--transition);
}

.work-item:hover .work-overlay {
    transform: translateY(0);
    opacity: 1;
}

.work-overlay span {
    color: var(--accent);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    display: block;
    margin-bottom: 0.5rem;
}

.work-overlay h4 {
    font-size: 1.5rem;
}

.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    text-transform: uppercase;
    border-bottom: 1px solid var(--accent);
    padding-bottom: 2px;
}

.link-arrow span {
    transition: 0.3s;
}

.link-arrow:hover span {
    transform: translateX(5px);
}

/* Timeline / Process - Premium Redesign */
.timeline {
    position: relative;
    max-width: 1000px;
    /* Wider */
    margin: 0 auto;
    padding: 4rem 0;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    width: 4px;
    /* Thicker line */
    background: rgba(255, 255, 255, 0.1);
    height: 100%;
    z-index: 0;
    border-radius: 4px;
}

.timeline-line::after {
    /* ... existing animation logic ... */
    width: 4px;
    /* Match width */
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 0%;
    /* Animated via JS */
    background: var(--accent);
    box-shadow: 0 0 15px var(--accent-glow);
    transition: height 0.1s linear;
    max-height: 100%;
}

.timeline-item {
    width: 50%;
    position: relative;
    padding: 2rem;
    z-index: 1;
    perspective: 1000px;
    opacity: 0;
    /* Hidden initially for JS reveal */
}

/* Content Box Styling (Glassmorphism Card) */
.timeline-content {
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: 0.3s var(--transition);
    position: relative;
    overflow: hidden;
}

.timeline-content:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
    box-shadow: 0 15px 40px rgba(255, 107, 0, 0.15);
}

.timeline-content::before {
    /* Glow effect on hover */
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 0, 0.1), transparent);
    transition: 0.5s;
}

.timeline-content:hover::before {
    left: 100%;
}

/* Number Styling - Huge & Glowing */
.timeline-num {
    position: absolute;
    top: 50%;
    width: 80px;
    /* Bigger */
    height: 80px;
    /* Bigger */
    background: var(--bg-main);
    border: 2px solid var(--accent);
    border-radius: 50%;
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-head);
    font-size: 2rem;
    /* Bigger font */
    font-weight: 700;
    z-index: 2;
    transform: translateY(-50%);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
    /* Shadow to separate from line */
}

/* Alternating Logic */
.timeline-item:nth-of-type(odd) {
    left: 0;
    text-align: right;
    padding-right: 5rem;
    /* More space for number */
}

.timeline-item:nth-of-type(even) {
    left: 50%;
    text-align: left;
    padding-left: 5rem;
}

/* Number positioning */
.timeline-item:nth-of-type(odd) .timeline-num {
    right: -40px;
    /* Center on line (80px width / 2) */
}

.timeline-item:nth-of-type(even) .timeline-num {
    left: -40px;
}

.timeline-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

/* FAQ */
/* FAQ - Premium Glass Redesign */
.accordion {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.accordion-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    transition: 0.3s ease;
}

.accordion-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
}

.accordion-item.active {
    background: rgba(20, 20, 20, 0.8);
    border-color: var(--accent);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.accordion-header {
    width: 100%;
    padding: 1.5rem 2rem;
    background: none;
    border: none;
    color: var(--text-main);
    text-align: left;
    font-family: var(--font-head);
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: 0.3s;
    letter-spacing: 0.05em;
}

.accordion-header:hover {
    color: var(--accent);
}

.accordion-header::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--accent);
    transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 300;
}

.accordion-item.active .accordion-header::after {
    transform: rotate(45deg);
    /* X shape */
    color: var(--text-main);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    background: transparent;
}

.accordion-content p {
    padding: 0 2rem 2rem;
    color: var(--text-sec);
    line-height: 1.7;
    font-size: 1rem;
    opacity: 0.9;
}

.logo img {
    height: 70px;
    /* Increased size per user request */
    width: auto;
    object-fit: contain;
}

/* Mega Footer Enhanced */
.footer {
    background: #020202;
    padding: 6rem 0 2rem;
    position: relative;
    border-top: none;
    /* Removed simple border */
}

/* Gradient Top Border Effect */
.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 107, 0, 0.5),
            transparent);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 4rem;
    margin-bottom: 5rem;
}

/* Footer Logo Big */
.footer-logo {
    height: 90px !important;
    /* SIGNIFICANTLY Bigger */
    width: auto;
    margin-bottom: 2rem;
    opacity: 1;
}

.footer h4 {
    margin-bottom: 2rem;
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    color: var(--text-main);
    text-transform: uppercase;
    font-weight: 600;
}

.footer ul li {
    margin-bottom: 1rem;
}

.footer ul li a {
    color: var(--text-sec);
    font-size: 0.95rem;
    transition: 0.3s;
}

.footer ul li a:hover {
    color: var(--accent);
    padding-left: 5px;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    width: 40px;
    height: 40px;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    border-radius: 50%;
    /* Brand update */
    transition: 0.3s;
}

.social-icons a:hover {
    background: var(--accent);
    border-color: var(--accent);
    transform: translateY(-3px);
}

/* Enhanced Newsletter */
.newsletter-form {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.newsletter-form input {
    width: 100%;
    padding: 1rem 1.2rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    color: var(--text-main);
    border-radius: 4px;
    /* Slight rounded corners */
    transition: 0.3s;
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--accent);
    background: rgba(255, 107, 0, 0.05);
}

.newsletter-form .btn {
    width: 100%;
    justify-content: center;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    font-size: 0.9rem;
    color: var(--text-sec);
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--text-main);
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: var(--bg-main);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.4s var(--transition);
}

.mobile-menu.active {
    right: 0;
}

.close-menu-btn {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: none;
    border: none;
    color: var(--text-main);
    font-size: 2.5rem;
    cursor: pointer;
}

.mobile-nav-links {
    text-align: center;
}

.mobile-nav-links li {
    margin: 2rem 0;
}

.mobile-nav-links a {
    font-family: var(--font-head);
    font-size: 2rem;
}

/* Animations Helpers */
.fade-in-up,
.timeline-item.visible {
    opacity: 1 !important;
    transform: translate(0) !important;
}

.delay-100 {
    animation-delay: 0.1s;
}

.delay-200 {
    animation-delay: 0.2s;
}

.delay-300 {
    animation-delay: 0.3s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 1024px) {

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

    .hero-content h1 {
        font-size: 4rem;
    }

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

@media (max-width: 768px) {

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

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

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

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

    .section {
        padding: 4rem 0;
    }

    .hero-cta {
        flex-direction: column;
    }

    /* Timeline Mobile */
    .timeline::before {
        left: 20px;
    }

    .timeline-line {
        left: 20px;
    }

    .timeline-item {
        width: 100%;
        padding-left: 3rem;
        padding-right: 0;
        text-align: left;
        margin-bottom: 2rem;
    }

    .timeline-item:nth-of-type(odd),
    .timeline-item:nth-of-type(even) {
        left: 0;
        text-align: left;
        padding-left: 3.5rem;
        padding-right: 0;
        transform: translateX(0);
        /* Reset transform */
    }

    .timeline-num {
        left: 0 !important;
        right: auto !important;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .social-icons {
        justify-content: center;
    }

    .newsletter-form {
        flex-direction: column;
    }
}

/* Scroll Indicator */
.scroll-down {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    z-index: 10;
    opacity: 0.7;
    transition: 0.3s;
}

.scroll-down:hover {
    opacity: 1;
}

.mouse {
    width: 26px;
    height: 40px;
    border: 2px solid var(--text-main);
    border-radius: 20px;
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    /* Slight fill */
}

.wheel {
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 4px;
    background: var(--accent);
    border-radius: 50%;
    animation: scrollWheel 2s infinite;
}

.arrow-down {
    width: 10px;
    height: 10px;
    border-right: 2px solid var(--text-main);
    border-bottom: 2px solid var(--text-main);
    transform: rotate(45deg);
    animation: arrowBounce 2s infinite;
    animation-delay: 0.2s;
}

@keyframes scrollWheel {
    0% {
        top: 6px;
        opacity: 1;
        height: 4px;
    }

    100% {
        top: 20px;
        opacity: 0;
        height: 8px;
    }
}

@keyframes arrowBounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0) rotate(45deg);
    }

    40% {
        transform: translateY(10px) rotate(45deg);
    }

    60% {
        transform: translateY(5px) rotate(45deg);
    }
}

/* Lenis Smooth Scroll */
html.lenis {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto !important;
    /* Lenis handles this */
}

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

.lenis.lenis-stopped {
    overflow: hidden;
}


/* --- Preloader --- */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #000;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.8s cubic-bezier(0.76, 0, 0.24, 1);
    /* Curtain up effect */
}

.preloader.loaded {
    transform: translateY(-100%);
}

.loader-content {
    text-align: center;
    color: #fff;
}

.loader-logo {
    width: 80px;
    height: auto;
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: fadeUp 0.8s ease forwards;
}

.loader-progress {
    font-family: var(--font-head);
    font-size: 1.5rem;
    color: var(--text-sec);
    opacity: 0;
    animation: fadeUp 0.8s ease 0.2s forwards;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Abstract Backgrounds (Generic) */
.abstract-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.abstract-circle {
    position: absolute;
    border-radius: 50%;
    background: var(--accent);
    opacity: 0.08;
    /* Subtle */
    filter: blur(80px);
}

.ac-1 {
    width: 500px;
    height: 500px;
    top: -150px;
    left: -100px;
}

.ac-2 {
    width: 400px;
    height: 400px;
    bottom: -100px;
    right: -100px;
}

.ac-3 {
    width: 300px;
    height: 300px;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.05;
}

/* Legal / Text Page Layout */
.legal-page {
    position: relative;
    min-height: 100vh;
    padding-top: 8rem;
    padding-bottom: 6rem;
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(20, 20, 20, 0.6);
    /* Glass */
    backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    padding: 4rem;
    border-radius: 20px;
    position: relative;
    z-index: 1;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.legal-header {
    text-align: center;
    margin-bottom: 4rem;
    border-bottom: 1px solid var(--border);
    padding-bottom: 2rem;
}

.legal-header h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1rem;
    color: var(--text-main);
}

.legal-content h3 {
    font-size: 1.25rem;
    color: var(--accent);
    margin-bottom: 1rem;
    margin-top: 3rem;
}

.legal-content p {
    color: var(--text-sec);
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

@media (max-width: 768px) {
    .legal-container {
        padding: 2rem;
        margin: 0 1.5rem;
    }
}