/* ==========================================================================
   SYNOVA THERAPEUTICS DESIGN SYSTEM (Light-Luxury / Premium Monochrome)
   ========================================================================== */

/* Design Tokens & Reset */
:root {
    /* Brand Colors (Light Luxury Version) */
    --bg-darkest: #F3F4F5;
    /* Primary light background */
    --bg-dark: #E8E9EB;
    /* Slightly darker light gray for depth */
    --bg-card: rgba(255, 255, 255, 0.7);
    /* Translucent white cards */
    --border-color: rgba(167, 170, 174, 0.3);
    /* Subtle border from #A7AAAE */
    --border-color-hover: rgba(167, 170, 174, 0.7);
    /* Stronger border on hover */

    --text-white: #1A1D21;
    /* Primary dark text */
    --text-gray: #3A3D42;
    /* Secondary text */
    --text-muted: #6B6F75;
    /* Muted/tertiary text */

    --font-serif: 'Cinzel', Georgia, serif;
    --font-sans: 'Montserrat', sans-serif;

    /* Metallic gradients adapted for light theme */
    --silver-gradient: linear-gradient(135deg, #4A4D52 0%, #6B6F75 35%, #A7AAAE 60%, #8D9195 100%);
    --silver-glow: 0 4px 20px rgba(167, 170, 174, 0.2);
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
    scroll-behavior: smooth;
    background-color: var(--bg-darkest);
    color: var(--text-white);
    font-family: var(--font-sans);
    overflow-x: hidden;
}

body {
    position: relative;
    overflow-x: hidden;
}

/* Background 3D Canvas Layer */
#canvas-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 1;
    pointer-events: none;
}

/* Typography Elements */
h1,
h2,
h3,
h4 {
    letter-spacing: 0.15em;
    font-weight: 400;
}

p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-gray);
    font-weight: 300;
    letter-spacing: 0.03em;
}

.serif-title {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    background: linear-gradient(to right, #1A1D21, #6B6F75);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.tag {
    display: inline-block;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    color: var(--text-muted);
    font-weight: 600;
    margin-bottom: 0.8rem;
    text-transform: uppercase;
    position: relative;
}

.tag::after {
    content: '';
    display: block;
    width: 40px;
    height: 1px;
    background: var(--text-muted);
    margin-top: 5px;
}

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

.text-center .tag::after {
    margin: 5px auto 0 auto;
}

.margin-bottom-l {
    margin-bottom: 4rem;
}

.margin-bottom-m {
    margin-bottom: 2rem;
}

.max-w-600 {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Header & Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 4%;
    z-index: 100;
    background: rgba(243, 244, 245, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-svg {
    color: #3A3D42;
    filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.1));
    transition: var(--transition-smooth);
}

.logo-container:hover .logo-svg {
    transform: rotate(60deg);
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    color: var(--text-white);
}

.brand-sub {
    font-size: 0.6rem;
    font-weight: 400;
    letter-spacing: 0.4em;
    color: var(--text-gray);
    margin-top: 2px;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-link {
    text-decoration: none;
    color: var(--text-gray);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    transition: var(--transition-smooth);
}

.nav-link:hover {
    color: var(--text-white);
    text-shadow: none;
}

/* Premium Buttons */
.btn-primary,
.btn-secondary,
.btn-outline,
.btn-primary-form {
    display: inline-block;
    padding: 12px 30px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-decoration: none;
    text-transform: uppercase;
    transition: var(--transition-smooth);
    cursor: pointer;
}

.btn-primary {
    background: var(--text-white);
    color: var(--bg-darkest);
    border: 1px solid var(--text-white);
}

.btn-primary:hover {
    background: transparent;
    color: var(--text-white);
    box-shadow: 0 0 20px rgba(26, 29, 33, 0.15);
}

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

.btn-secondary:hover {
    border-color: var(--text-white);
    background: rgba(26, 29, 33, 0.04);
}

.btn-outline {
    background: transparent;
    color: var(--text-white);
    border: 1px solid var(--border-color);
    padding: 10px 22px;
}

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

/* Main Content Structure */
main {
    position: relative;
    z-index: 2;
}

section {
    position: relative;
    padding: 120px 8%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.section-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Grid Utilities */
.grid-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

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

/* Hero Section styles */
.hero-section {
    padding-top: 180px;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.hero-content {
    max-width: 650px;
    z-index: 10;
}

.hero-content .overline {
    font-size: 0.8rem;
    letter-spacing: 0.35em;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
}

.hero-title {
    font-family: var(--font-serif);
    font-size: 5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 0.9;
    letter-spacing: 0.1em;
    background: linear-gradient(180deg, #1A1D21 0%, #A7AAAE 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-tagline {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    color: var(--text-gray);
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.scroll-indicator {
    margin-top: 60px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.mouse-icon {
    width: 24px;
    height: 40px;
    border: 2px solid var(--text-muted);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    padding-top: 6px;
}

.mouse-icon .wheel {
    width: 4px;
    height: 8px;
    background: var(--text-white);
    border-radius: 2px;
    animation: scrollWheel 1.5s infinite;
}

.scroll-text {
    font-size: 0.65rem;
    letter-spacing: 0.25em;
    color: var(--text-muted);
}

@keyframes scrollWheel {
    0% {
        transform: translateY(0);
        opacity: 1;
    }

    50% {
        transform: translateY(10px);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

/* About / Molecular Section */
.about-section {
    background: radial-gradient(circle at 80% 50%, rgba(167, 170, 174, 0.1), transparent);
}

.molecule-metrics {
    display: flex;
    gap: 20px;
    margin-top: 40px;
}

.metric-card {
    flex: 1;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 20px;
    border-radius: 4px;
    text-align: center;
    transition: var(--transition-smooth);
}

.metric-card:hover {
    border-color: var(--border-color-hover);
    transform: translateY(-5px);
    box-shadow: var(--silver-glow);
}

.metric-card h3 {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    color: var(--text-white);
    margin-bottom: 6px;
}

.metric-card p {
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.molecule-interactive-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 40px;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.molecule-canvas-fallback {
    position: relative;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pulse-node {
    position: absolute;
    border-radius: 50%;
    background: #4A4D52;
    box-shadow: 0 0 30px rgba(74, 77, 82, 0.3);
}

.main-node {
    width: 24px;
    height: 24px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: mainPulse 2s infinite ease-in-out;
}

.secondary-node {
    width: 14px;
    height: 14px;
    opacity: 0.7;
}

.node-1 {
    top: 25%;
    left: 25%;
    animation: floatNode 3s infinite alternate;
}

.node-2 {
    top: 30%;
    left: 75%;
    animation: floatNode 4s infinite alternate-reverse;
}

.node-3 {
    top: 80%;
    left: 50%;
    animation: floatNode 5s infinite alternate;
}

.connecting-lines {
    position: absolute;
    width: 100%;
    height: 100%;
}

.card-details {
    border-top: 1px solid var(--border-color);
    padding-top: 15px;
    text-align: center;
}

.card-caption {
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    color: var(--text-muted);
}

@keyframes mainPulse {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.8;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 1;
    }
}

@keyframes floatNode {
    0% {
        transform: translateY(0px) translateX(0px);
    }

    100% {
        transform: translateY(-15px) translateX(10px);
    }
}

/* Mechanism of Action Section */
.mechanism-section {
    background: radial-gradient(circle at 50% 50%, rgba(167, 170, 174, 0.12), var(--bg-darkest));
}

.triangle-layout {
    position: relative;
    width: 500px;
    height: 450px;
    margin: 80px auto 0 auto;
}

.triangle-node {
    position: absolute;
    width: 160px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 25px 20px;
    border-radius: 6px;
    transition: var(--transition-smooth);
    z-index: 5;
}

.triangle-node:hover {
    border-color: var(--text-white);
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(26, 29, 33, 0.08);
}

.triangle-node i {
    font-size: 1.8rem;
    color: #4A4D52;
    margin-bottom: 12px;
}

.triangle-node h4 {
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.triangle-node p {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.top-node {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.left-node {
    bottom: 0;
    left: 0;
}

.right-node {
    bottom: 0;
    right: 0;
}

.triangle-center {
    position: absolute;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90px;
    height: 90px;
    border: 2px solid rgba(26, 29, 33, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    background: var(--bg-darkest);
    box-shadow: 0 0 20px rgba(167, 170, 174, 0.15);
}

.center-brand {
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    font-weight: 600;
}

/* Areas of Research Section */
.research-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 40px 30px;
    border-radius: 4px;
    transition: var(--transition-smooth);
}

.research-card:hover {
    border-color: var(--text-white);
    transform: translateY(-5px);
    box-shadow: var(--silver-glow);
}

.card-icon {
    font-size: 2.2rem;
    margin-bottom: 24px;
    background: var(--silver-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.research-card h3 {
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    margin-bottom: 12px;
    color: var(--text-white);
}

.research-card p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Quality Standard Section */
.quality-section {
    background: radial-gradient(circle at 10% 50%, rgba(167, 170, 174, 0.1), transparent);
}

.glass-photo-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 20px;
    border-radius: 8px;
    position: relative;
}

.photo-img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    filter: grayscale(100%) contrast(1.1);
    opacity: 0.85;
    transition: var(--transition-smooth);
}

.glass-photo-card:hover .photo-img {
    filter: grayscale(0%) contrast(1);
    opacity: 1;
}

.photo-badge {
    position: absolute;
    bottom: 40px;
    right: 40px;
    background: rgba(243, 244, 245, 0.92);
    border: 1px solid var(--border-color);
    padding: 10px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.photo-badge i {
    color: #2d8fb5;
    /* Soft cryogenic blue adjusted for light bg */
}

.photo-badge span {
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    font-weight: 600;
}

.quality-row {
    display: flex;
    gap: 30px;
    margin-top: 40px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 30px;
}

.quality-row:last-child {
    border-bottom: none;
}

.quality-number {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-muted);
}

.quality-info h4 {
    font-size: 1rem;
    margin-bottom: 8px;
    color: var(--text-white);
}

.quality-info p {
    font-size: 0.85rem;
}

/* Product Showroom Section */
.showroom-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
}

.product-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.product-card:hover {
    border-color: var(--border-color-hover);
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(167, 170, 174, 0.18);
}

.product-image-wrap {
    height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle, #EDEEF0 0%, var(--bg-darkest) 100%);
    padding: 20px;
    overflow: hidden;
}

.product-img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    transition: var(--transition-smooth);
}

.product-card:hover .product-img {
    transform: scale(1.06);
}

.product-info {
    padding: 24px 28px 28px;
    border-top: 1px solid var(--border-color);
}

.product-info h3 {
    font-family: var(--font-serif);
    font-size: 1.05rem;
    letter-spacing: 0.12em;
    margin-bottom: 8px;
    color: var(--text-white);
}

.product-specs {
    font-size: 0.68rem;
    letter-spacing: 0.15em;
    color: var(--text-muted);
    font-weight: 600;
    margin-bottom: 14px;
    text-transform: uppercase;
}

.product-desc {
    font-size: 0.82rem;
    line-height: 1.65;
    color: var(--text-gray);
    font-weight: 300;
}

/* Call to Action Section */
.cta-section {
    position: relative;
    background: var(--bg-darkest);
    overflow: hidden;
}

.cta-backdrop-glow {
    position: absolute;
    bottom: -150px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 400px;
    background: radial-gradient(ellipse at center, rgba(167, 170, 174, 0.12) 0%, transparent 70%);
    z-index: 1;
}

.cta-section .section-container {
    position: relative;
    z-index: 2;
}

.font-large {
    font-size: 3.5rem;
}

.cta-form-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    margin-top: 50px;
}

.qr-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    border: 1px solid var(--border-color);
    padding: 20px;
    background: var(--bg-card);
}

.qr-placeholder i {
    font-size: 3.5rem;
    color: var(--text-gray);
}

.qr-placeholder span {
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    color: var(--text-muted);
    font-weight: 600;
}

.cta-form {
    display: flex;
    width: 100%;
    max-width: 500px;
    border: 1px solid var(--border-color);
    background: rgba(255, 255, 255, 0.4);
}

.input-field {
    flex-grow: 1;
    background: transparent;
    border: none;
    padding: 18px 24px;
    color: var(--text-white);
    font-family: var(--font-sans);
    font-size: 0.8rem;
    letter-spacing: 0.1em;
}

.input-field::placeholder {
    color: var(--text-muted);
}

.input-field:focus {
    outline: none;
}

.btn-primary-form {
    background: var(--text-white);
    color: var(--bg-darkest);
    border: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-primary-form:hover {
    background: #3A3D42;
}

/* Footer styling */
.footer {
    border-top: 1px solid var(--border-color);
    background: #E8E9EB;
    padding: 60px 8%;
    position: relative;
    z-index: 2;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-logo-text {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    letter-spacing: 0.2em;
    font-weight: 700;
}

.footer-tagline {
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    color: var(--text-muted);
}

.footer-disclaimer {
    text-align: right;
}

.warning-text {
    font-size: 0.75rem;
    color: #c53030;
    /* Alert red adjusted for light bg */
    font-weight: 600;
    letter-spacing: 0.1em;
    margin-bottom: 6px;
}

.copyright {
    font-size: 0.65rem;
    color: var(--text-muted);
}

/* Mobile Menu Toggle & Drawer Styles */
.mobile-menu-toggle {
    display: none;
    background: transparent;
    border: none;
    color: var(--text-white);
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 101;
    transition: var(--transition-smooth);
}

.mobile-menu-toggle:hover {
    color: var(--text-gray);
}

.mobile-nav-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: rgba(243, 244, 245, 0.98);
    backdrop-filter: blur(20px);
    border-left: 1px solid var(--border-color);
    z-index: 1000;
    padding: 100px 40px 40px 40px;
    display: flex;
    flex-direction: column;
    transition: right 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-nav-drawer.active {
    right: 0;
}

.mobile-menu-close {
    position: absolute;
    top: 25px;
    right: 30px;
    background: transparent;
    border: none;
    color: var(--text-white);
    font-size: 1.8rem;
    cursor: pointer;
}

.mobile-drawer-links {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.mobile-drawer-link {
    text-decoration: none;
    color: var(--text-gray);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    transition: var(--transition-smooth);
}

.mobile-drawer-link:hover {
    color: var(--text-white);
    padding-left: 5px;
}

/* Responsive Media Queries */
@media (max-width: 992px) {
    section {
        padding: 80px 6%;
    }

    .grid-2col {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .grid-4col {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .showroom-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .hero-title {
        font-size: 3.2rem;
    }

    .font-large {
        font-size: 2.3rem;
    }

    .triangle-layout {
        transform: scale(0.85);
        margin: 40px auto;
    }
}

@media (max-width: 768px) {
    .header {
        padding: 0 24px;
        height: 70px;
    }

    .nav-links,
    .header-cta {
        display: none;
        /* Hide desktop elements */
    }

    .mobile-menu-toggle {
        display: block;
        /* Show menu toggle */
    }

    section {
        padding: 80px 4%;
    }

    .hero-section {
        padding-top: 120px;
        text-align: center;
        justify-content: center;
        align-items: center;
    }

    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .hero-tagline {
        font-size: 0.95rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }

    .hero-buttons a {
        width: 100%;
        text-align: center;
    }

    .scroll-indicator {
        display: none;
        /* Hide scroll mouse on small touchscreens */
    }

    .molecule-interactive-card {
        height: 280px;
        padding: 20px;
    }

    .molecule-canvas-fallback {
        transform: scale(0.8);
    }

    /* Hide 3D Canvas element when viewing mobile about section to avoid overlap */
    #canvas-container {
        opacity: 0.15;
        /* Make it a very subtle background opacity instead of high-contrast overlap */
    }

    .molecule-metrics {
        flex-direction: column;
        gap: 12px;
        margin-top: 25px;
    }

    .metric-card {
        padding: 15px;
    }

    .metric-card h3 {
        font-size: 1.1rem;
    }

    .triangle-layout {
        transform: scale(0.65);
        margin: 0 auto;
        width: 100%;
        max-width: 320px;
        height: 380px;
    }

    .triangle-node {
        width: 135px;
        padding: 15px 10px;
    }

    .triangle-node i {
        font-size: 1.4rem;
        margin-bottom: 8px;
    }

    .triangle-node h4 {
        font-size: 0.7rem;
    }

    .triangle-node p {
        font-size: 0.65rem;
    }

    .triangle-center {
        width: 70px;
        height: 70px;
    }

    .top-node {
        top: 0;
    }

    .left-node {
        bottom: 20px;
    }

    .right-node {
        bottom: 20px;
    }

    .grid-4col {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .research-card {
        padding: 30px 20px;
    }

    .quality-row {
        gap: 15px;
        padding-bottom: 20px;
        margin-top: 30px;
    }

    .quality-number {
        font-size: 1.5rem;
    }

    .quality-info h4 {
        font-size: 0.9rem;
    }

    .quality-info p {
        font-size: 0.8rem;
    }

    .specimen-display {
        height: 280px;
    }

    .specimen-metadata {
        padding: 20px;
    }

    .cta-form {
        flex-direction: column;
        border: none;
        gap: 15px;
        background: transparent;
    }

    .input-field {
        background: var(--bg-card);
        border: 1px solid var(--border-color);
        width: 100%;
    }

    .btn-primary-form {
        width: 100%;
        justify-content: center;
        padding: 18px;
    }

    .footer-container {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }

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

    .warning-text {
        font-size: 0.7rem;
    }
}