/* =========================================
   1. RESET & VARIABLES
   ========================================= */
:root {
    /* Breeze Tech Palette */
    --color-primary: #00D2B4;
    /* Bright Mint */
    --color-primary-dark: #00A896;
    /* Deep Teal */
    --color-primary-light: #E0F7FA;
    /* Ice Blue */
    --color-secondary: #2C3E50;
    /* Navy */
    --color-text: #333333;
    /* Dark Gray */
    --color-text-light: #666666;
    /* Medium Gray */
    --color-bg: #FFFFFF;
    /* White */
    --color-bg-alt: #F9FAFB;
    /* Off White */
    --color-border: #E5E7EB;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;

    /* Shadows & Radius */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-mint: 0 10px 20px rgba(0, 210, 180, 0.2);
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-full: 9999px;

    /* Fonts */
    --font-main: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-main);
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* =========================================
   2. UTILITIES & TYPOGRAPHY
   ========================================= */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: var(--spacing-xl) 0;
}

.text-center {
    text-align: center;
}

.text-mint {
    color: var(--color-primary);
}

.text-white {
    color: #fff;
}

.bg-mint-light {
    background-color: var(--color-primary-light);
}

.bg-dark {
    background-color: var(--color-secondary);
    color: #fff;
}

h1,
h2,
h3,
h4 {
    color: var(--color-secondary);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--spacing-sm);
}

h1 {
    font-size: 3.5rem;
    letter-spacing: -1px;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: var(--spacing-sm);
    color: var(--color-text-light);
}

.sub-heading {
    display: inline-block;
    color: var(--color-primary-dark);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    margin-bottom: var(--spacing-xs);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    border-radius: var(--radius-md);
    font-weight: 600;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-primary {
    background-color: var(--color-primary);
    color: white;
    box-shadow: var(--shadow-mint);
}

.btn-primary:hover {
    background-color: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(0, 210, 180, 0.3);
}

.btn-outline {
    border-color: var(--color-secondary);
    color: var(--color-secondary);
    background: transparent;
}

.btn-outline:hover {
    background-color: var(--color-secondary);
    color: white;
}

.btn-white {
    background-color: white;
    color: var(--color-primary);
}

.btn-white:hover {
    background-color: var(--color-secondary);
    color: white;
}

.btn-lg {
    padding: 16px 32px;
    font-size: 1.1rem;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 0.9rem;
}

/* =========================================
   3. HEADER STYLES
   ========================================= */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: padding 0.3s ease;
    padding: 20px 0;
}

.main-header.scrolled {
    padding: 10px 0;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img, .logo-img-sm {
    height: 50px;
    width: auto;
    filter: brightness(0) saturate(100%) invert(67%) sepia(62%) saturate(478%) hue-rotate(116deg) brightness(95%) contrast(92%);
}

.brand-name {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-secondary);
    letter-spacing: -0.5px;
}

.desktop-nav .nav-list {
    display: flex;
    gap: 30px;
}

.nav-link {
    font-weight: 500;
    color: var(--color-secondary);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-primary);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: var(--color-secondary);
    transition: 0.3s;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    background: white;
    padding: 20px;
    box-shadow: var(--shadow-md);
    transform: translateY(-150%);
    transition: transform 0.4s ease;
    z-index: 999;
}

.mobile-menu.active {
    transform: translateY(0);
}

.mobile-nav-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.mobile-nav-content a {
    font-size: 1.2rem;
    font-weight: 600;
    border-bottom: 1px solid var(--color-border);
    padding-bottom: 10px;
}

/* =========================================
   4. HERO SECTION
   ========================================= */
.hero-section {
    position: relative;
    padding-top: 150px;
    padding-bottom: 100px;
    background: linear-gradient(135deg, #f0fdfc 0%, #ffffff 100%);
    overflow: hidden;
}

.hero-bg-shapes .shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 1;
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: rgba(0, 210, 180, 0.1);
    top: -100px;
    right: -100px;
}

.shape-2 {
    width: 300px;
    height: 300px;
    background: rgba(44, 62, 80, 0.05);
    bottom: 50px;
    left: -50px;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.badge-pill {
    background: rgba(0, 210, 180, 0.1);
    color: var(--color-primary-dark);
    padding: 8px 16px;
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 20px;
}

.hero-btns {
    display: flex;
    gap: 20px;
    margin: 40px 0;
}

.hero-stats {
    display: flex;
    gap: 50px;
}

.stat-item .stat-num {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-secondary);
}

/* Hero Visual Animation */
.hero-visual {
    position: relative;
    height: 500px;
}

.floating-card {
    position: absolute;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255, 255, 255, 0.6);
}

.card-main {
    top: 10%;
    left: 10%;
    width: 80%;
    height: 70%;
    padding: 20px;
    animation: float 6s ease-in-out infinite;
    z-index: 2;
}

.card-secondary {
    bottom: 10%;
    right: 5%;
    padding: 15px 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    animation: float 5s ease-in-out infinite reverse;
    z-index: 3;
    font-weight: 600;
    color: var(--color-primary-dark);
}

.card-secondary i {
    font-size: 1.5rem;
    color: var(--color-primary);
}

/* Chart CSS */
.chart-header {
    display: flex;
    gap: 8px;
    margin-bottom: 30px;
}

.chart-header .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dot.red {
    background: #ff5f56;
}

.dot.yellow {
    background: #ffbd2e;
}

.dot.green {
    background: #27c93f;
}

.bar-chart {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    height: 200px;
    padding: 0 20px;
}

.bar-chart .bar {
    width: 12%;
    background: #E5E7EB;
    border-radius: 4px 4px 0 0;
    transition: height 1s ease;
}

.bar-chart .bar.active {
    background: var(--color-primary);
    box-shadow: 0 0 20px rgba(0, 210, 180, 0.4);
}

.floating-badge {
    position: absolute;
    top: 50px;
    right: -20px;
    background: var(--color-secondary);
    color: white;
    padding: 10px 20px;
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    font-weight: 600;
    animation: pulse 3s infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

/* =========================================
   5. MARQUEE
   ========================================= */
.logo-marquee {
    background: var(--color-secondary);
    color: white;
    padding: 20px 0;
    overflow: hidden;
    white-space: nowrap;
}

.marquee-content {
    display: inline-block;
    animation: scroll 20s linear infinite;
    font-size: 1.2rem;
    font-weight: 600;
    opacity: 0.8;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* =========================================
   6. SERVICES
   ========================================= */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background: white;
    padding: 40px 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-border);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-primary);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--color-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.icon-wrapper {
    width: 60px;
    height: 60px;
    background: var(--color-primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--color-primary-dark);
    margin-bottom: 20px;
}

.feature-list {
    margin-top: 20px;
}

.feature-list li {
    margin-bottom: 10px;
    font-size: 0.9rem;
    color: var(--color-text-light);
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-list li i {
    color: var(--color-primary);
    font-size: 0.8rem;
}

/* =========================================
   7. CALCULATOR
   ========================================= */
.calc-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.calc-benefits {
    margin-top: 40px;
    display: flex;
    gap: 30px;
}

.benefit {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: var(--color-secondary);
}

.calc-interface {
    background: white;
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.input-group {
    margin-bottom: 25px;
}

.input-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--color-secondary);
}

input[type=range] {
    width: 100%;
    -webkit-appearance: none;
    height: 6px;
    background: #E5E7EB;
    border-radius: 5px;
    outline: none;
}

input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    background: var(--color-primary);
    border-radius: 50%;
    cursor: pointer;
    transition: transform 0.2s;
}

input[type=range]::-webkit-slider-thumb:hover {
    transform: scale(1.2);
}

.range-value {
    margin-top: 5px;
    font-size: 0.9rem;
    color: var(--color-primary-dark);
    font-weight: 700;
    text-align: right;
}

.calc-result {
    background: var(--color-secondary);
    color: white;
    padding: 20px;
    border-radius: var(--radius-md);
    text-align: center;
    margin-top: 30px;
}

.result-amount {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-primary);
    margin: 10px 0;
}

.result-note {
    font-size: 0.8rem;
    opacity: 0.7;
}

/* =========================================
   8. PROCESS TIMELINE
   ========================================= */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 60px auto 0;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 2px;
    background-color: var(--color-primary);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -1px;
}

.timeline-item {
    padding: 10px 40px;
    position: relative;
    background-color: inherit;
    width: 50%;
}

.timeline-item::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    right: -10px;
    background-color: white;
    border: 4px solid var(--color-primary);
    top: 15px;
    border-radius: 50%;
    z-index: 1;
}

.left {
    left: 0;
}

.right {
    left: 50%;
}

.left::before {
    content: " ";
    height: 0;
    position: absolute;
    top: 22px;
    width: 0;
    z-index: 1;
    right: 30px;
    border: medium solid white;
    border-width: 10px 0 10px 10px;
    border-color: transparent transparent transparent white;
}

.right::before {
    content: " ";
    height: 0;
    position: absolute;
    top: 22px;
    width: 0;
    z-index: 1;
    left: 30px;
    border: medium solid white;
    border-width: 10px 10px 10px 0;
    border-color: transparent white transparent transparent;
}

.right::after {
    left: -10px;
}

.timeline-content {
    padding: 20px 30px;
    background-color: white;
    position: relative;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.step-num {
    font-size: 3rem;
    font-weight: 900;
    color: rgba(0, 210, 180, 0.1);
    position: absolute;
    top: 10px;
    right: 20px;
}

/* =========================================
   9. DASHBOARD SECTION
   ========================================= */
.dashboard-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: center;
}

.dashboard-text h2, .dashboard-text p {

color: white;

}

.check-list li {
    margin-bottom: 15px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 15px;
}

.check-list i {
    color: var(--color-primary);
}

.dashboard-ui {
    background: #1a252f;
    border-radius: var(--radius-lg);
    padding: 20px;
    border: 1px solid #34495e;
}

.ui-header {
    display: flex;
    justify-content: space-between;
    padding-bottom: 20px;
    border-bottom: 1px solid #34495e;
    margin-bottom: 20px;
    font-weight: 600;
}

.ui-controls .dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    background: #34495e;
    border-radius: 50%;
    margin-left: 5px;
}

.ui-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 20px;
    height: 300px;
}

.ui-card {
    background: #2c3e50;
    border-radius: var(--radius-md);
    padding: 20px;
}

.graph-card {
    grid-row: span 2;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.fake-graph svg {
    width: 100%;
    height: auto;
}

.big-num {
    font-size: 2rem;
    font-weight: 700;
    display: block;
    margin-top: 10px;
}

/* =========================================
   10. INDUSTRIES
   ========================================= */
.industry-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    height: 400px;
}

.ind-item {
    background-image: var(--bg-img);
    background-size: cover;
    background-position: center;
    position: relative;
    cursor: pointer;
    overflow: hidden;
}

.ind-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(44, 62, 80, 0.8);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.4s ease;
}

.ind-item:hover .ind-overlay {
    background: rgba(0, 210, 180, 0.9);
}

.ind-overlay i {
    font-size: 2.5rem;
    margin-bottom: 15px;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.ind-overlay h3 {
    color: white;
    font-size: 1.5rem;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.4s ease;
}

.ind-item:hover i {
    transform: translateY(0);
}

.ind-item:hover h3 {
    transform: translateY(0);
    opacity: 1;
}

/* =========================================
   11. TESTIMONIALS
   ========================================= */
.testimonial-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card {
    background: white;
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    position: relative;
}

.quote-icon {
    font-size: 2rem;
    color: var(--color-primary-light);
    margin-bottom: 20px;
}

.testimonial-card p {
    font-style: italic;
    color: var(--color-secondary);
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.avatar {
    width: 50px;
    height: 50px;
    background: var(--color-secondary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.info strong {
    display: block;
    color: var(--color-secondary);
}

.info span {
    font-size: 0.85rem;
    color: var(--color-text-light);
}

/* =========================================
   12. CTA SECTION
   ========================================= */
.cta-section {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    padding: 80px 0;
    text-align: center;
}

.cta-box h2 {
    color: white;
    margin-bottom: 10px;
}

.cta-box p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    margin-bottom: 30px;
}

/* =========================================
   13. FOOTER
   ========================================= */
.main-footer {
    background-color: #1A252F;
    color: #BDC3C7;
    padding-top: 80px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 60px;
    border-bottom: 1px solid #34495e;
}

.footer-col h4 {
    color: white;
    margin-bottom: 25px;
    font-size: 1.2rem;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a:hover {
    color: var(--color-primary);
    padding-left: 5px;
}

.brand-col p {
    color: #BDC3C7;
    margin: 20px 0;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: #34495e;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: 0.3s;
}

.social-links a:hover {
    background: var(--color-primary);
    transform: translateY(-3px);
}

.contact-info li {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.contact-info i {
    color: var(--color-primary);
    margin-top: 5px;
}

.footer-bottom {
    padding: 30px 0;
}

.bottom-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.legal-links a {
    margin-left: 20px;
    font-size: 0.9rem;
}

.legal-links a:hover {
    color: var(--color-primary);
}

/* =========================================
   14. LIVE CHAT
   ========================================= */
.chat-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.chat-toggle {
    width: 60px;
    height: 60px;
    background: var(--color-primary);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: var(--shadow-mint);
    transition: transform 0.3s;
}

.chat-toggle:hover {
    transform: scale(1.1);
}

.chat-window {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 320px;
    height: 400px;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    display: none;
    flex-direction: column;
    overflow: hidden;
}

.chat-window.active {
    display: flex;
}

.chat-header {
    background: var(--color-secondary);
    color: white;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.close-chat {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

.chat-body {
    flex: 1;
    padding: 15px;
    background: #f9f9f9;
}

.msg.bot {
    background: white;
    padding: 10px;
    border-radius: 10px 10px 10px 0;
    box-shadow: var(--shadow-sm);
    display: inline-block;
}

.chat-input-area {
    padding: 15px;
    background: white;
    border-top: 1px solid #eee;
    display: flex;
    gap: 10px;
}

.chat-input-area input {
    flex: 1;
    border: 1px solid #ddd;
    border-radius: 20px;
    padding: 5px 15px;
    outline: none;
}

.chat-input-area button {
    background: none;
    border: none;
    color: var(--color-primary);
    font-size: 1.2rem;
    cursor: pointer;
}

/* =========================================
   15. RESPONSIVE MEDIA QUERIES
   ========================================= */
@media (max-width: 992px) {
    h1 {
        font-size: 2.5rem;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-btns,
    .hero-stats {
        justify-content: center;
    }

    .hero-visual {
        display: none;
    }

    .timeline::after {
        left: 40px;
    }

    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
    }

    .timeline-item::after {
        left: 30px;
    }

    .left::before,
    .right::before {
        left: 60px;
        border: medium solid white;
        border-width: 10px 10px 10px 0;
        border-color: transparent white transparent transparent;
    }

    .right {
        left: 0;
    }

    .dashboard-layout {
        grid-template-columns: 1fr;
    }

    .industry-grid {
        grid-template-columns: 1fr 1fr;
        height: 600px;
    }
}

@media (max-width: 768px) {

    .desktop-nav,
    .header-actions .btn {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

    .calc-wrapper {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .bottom-flex {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .legal-links a {
        margin: 0 10px;
    }
}