/* ==========================================================================
   MASTER CUSTOM SHEET MATRIX FOR OLYMPIA SOFTTECH PLATFORM CORE
   ========================================================================== */

/* ==========================================================================
   1. GLOBAL ARCHITECTURAL PARAMETERS
   ========================================================================== */
:root {
    --primary-blue: #0a2540;     /* Rich Executive Navy Matrix Background */
    --accent-blue: #0066cc;      /* High-Contrast Luminous Brand Indicator */
    --text-dark: #1e293b;        /* Crisp Charcoal Technical Text Body */
    --text-muted: #64748b;       /* Muted Slate Functional Information Text */
    --bg-light: #f8fafc;         /* Ultra-Clean Matte Background Workspace */
    --white: #ffffff;            /* Pure Canvas Layer White */
    --transition-standard: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --bezier-smooth: cubic-bezier(0.16, 1, 0.3, 1);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: var(--white);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100% !important;
}

/* ==========================================================================
   2. DESKTOP NAVBAR ARCHITECTURE
   ========================================================================== */
header.navbar,
.navbar {
    width: 100% !important;
    height: 120px !important;
    background-color: #ffffff !important;
    border-bottom: 1px solid #cbd5e1 !important;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 999999 !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05) !important;
    display: flex !important;
    align-items: center !important;
    opacity: 1 !important;
    visibility: visible !important;
    animation: navbarSlideDown 0.5s var(--bezier-smooth) both;
}

/* Push Main Page Content Cleanly Below Fixed Header on Desktop */
main.reveal-frame,
main {
    margin-top: 120px !important;
    position: relative !important;
    z-index: 1 !important;
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
}

.navbar-inner {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    width: 100% !important;
    max-width: 1300px !important;
    height: 100% !important;
    margin: 0 auto !important;
    padding: 0 2rem !important;
    position: relative !important;
}

/* LOGO CONTAINER */
.logo-container {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    height: 100% !important;
    flex-shrink: 0 !important;
}

.logo-container a {
    display: flex !important;
    align-items: center !important;
    text-decoration: none !important;
    height: 100% !important;
}

.logo-container img,
.logo-container img[src*="logo"] {
    height: 100px !important;
    max-height: 100px !important;
    width: auto !important;
    max-width: 280px !important;
    object-fit: contain !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* NAVIGATION LINKS CONTAINER */
.nav-links {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 1.75rem !important;
    margin: 0 !important;
    padding: 0 !important;
}

.nav-links a,
.direct-page-link {
    text-decoration: none !important;
    color: var(--text-muted) !important;
    font-weight: 700 !important;
    font-size: 1.05rem !important;
    transition: var(--transition-standard) !important;
    white-space: nowrap !important;
    cursor: pointer !important;
}

.nav-links a:hover,
.nav-links a.active,
.direct-page-link:hover,
.direct-page-link.active {
    color: var(--accent-blue) !important;
}

/* SPLIT ITEM ENGINE & ANTI-GLITCH HOVER BRIDGE */
.nav-split-item {
    display: inline-flex !important;
    align-items: center !important;
    gap: 4px !important;
    position: relative !important;
    padding-bottom: 12px !important;
    margin-bottom: -12px !important;
}

.arrow-dropdown-wrapper {
    position: relative !important;
    display: inline-flex !important;
    align-items: center !important;
}

.arrow-trigger {
    background: transparent !important;
    border: none !important;
    color: var(--text-muted) !important;
    font-size: 0.85rem !important;
    cursor: pointer !important;
    padding: 4px 6px !important;
    line-height: 1 !important;
    user-select: none !important;
    transition: color 0.3s ease !important;
}

.arrow-trigger:hover {
    color: var(--accent-blue) !important;
}

/* DROPDOWN FLYOUT PANEL */
.dropdown-flyout-panel {
    display: none !important;
    position: absolute !important;
    top: 100% !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    background: var(--white) !important;
    border: 2px solid #0a2540 !important;
    border-radius: 10px !important;
    padding: 0.5rem 0 !important;
    min-width: 260px !important;
    max-height: 280px !important;
    overflow-y: auto !important;
    overflow-x: hidden !important;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2) !important;
    z-index: 1000000 !important;
}

.dropdown-flyout-panel::before {
    content: '' !important;
    position: absolute !important;
    top: -15px !important;
    left: 0 !important;
    width: 100% !important;
    height: 15px !important;
    background: transparent !important;
}

.dropdown-flyout-panel a {
    display: block !important;
    padding: 0.7rem 1.25rem !important;
    color: var(--text-dark) !important;
    font-size: 0.9rem !important;
    font-weight: 700 !important;
    text-align: left !important;
    text-decoration: none !important;
    transition: background 0.2s ease, color 0.2s ease !important;
    white-space: nowrap !important;
    border-bottom: 1px solid #f1f5f9 !important;
    cursor: pointer !important;
    position: relative !important;
    z-index: 1000001 !important;
}

.dropdown-flyout-panel a:hover {
    background-color: rgba(0, 102, 204, 0.08) !important;
    color: var(--accent-blue) !important;
}

/* DESKTOP HOVER ENGINE */
@media screen and (min-width: 769px) {
    .nav-split-item:hover .dropdown-flyout-panel,
    .arrow-dropdown-wrapper:hover .dropdown-flyout-panel,
    .dropdown-flyout-panel.show {
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
}

/* CONTACT BUTTON WRAPPER */
.contact-btn-wrapper {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    flex-shrink: 0 !important;
}

.btn-nav-contact {
    background-color: var(--primary-blue) !important;
    color: var(--white) !important;
    padding: 0.75rem 1.75rem !important;    
    border-radius: 50px !important;          
    font-weight: 700 !important;
    font-size: 0.95rem !important;
    transition: var(--transition-standard) !important;
    border: 2px solid transparent !important;
    text-decoration: none !important;
    text-align: center !important;
    white-space: nowrap !important;
    display: inline-block !important;
}

.btn-nav-contact:hover {
    background-color: var(--accent-blue) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 20px rgba(0, 102, 204, 0.25) !important;
}

/* ==========================================================================
   3. UNIFIED HERO SECTION ENGINE (DESKTOP HARMONIZED TYPOGRAPHY)
   ========================================================================== */
.hero-section,
main section:first-of-type,
main section:first-child,
.subpage-view main section:first-of-type,
.services-subpage main section:first-of-type,
.industries-subpage main section:first-of-type,
body main section:first-of-type,
section[class*="hero"] {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    box-sizing: border-box !important;
    padding: 8rem 5% 6rem 5% !important;
    position: relative !important;
    left: 0 !important;
    right: 0 !important;
    
    /* FORCES PERFECT HORIZONTAL & VERTICAL CENTERING */
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    text-align: center !important;
}

/* Force wrapper and all child elements to align to center axis */
.hero-content-wrapper,
main section:first-of-type > div[class*="content"],
main section:first-of-type > div {
    max-width: 1100px !important;
    margin: 0 auto !important;
    padding: 0 !important;
    width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
}

/* 🎯 UNIFIED DESKTOP HERO TYPOGRAPHY (MAIN PAGES & SERVICES/INDUSTRIES SUBPAGES) */

/* Hero Tagline / Badge */
.hero-tagline,
main section:first-of-type span,
section[class*="hero"] span,
.subpage-view main section:first-of-type span,
.services-subpage main section:first-of-type span,
.industries-subpage main section:first-of-type span {
    font-size: 0.85rem !important;
    font-weight: 700 !important;
    letter-spacing: 1px !important;
    text-transform: uppercase !important;
    color: #38bdf8 !important;
    margin-bottom: 0.4rem !important;
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

/* Hero Headline (H1) */
.hero-title,
main section:first-of-type h1,
section[class*="hero"] h1,
.subpage-view main section:first-of-type h1,
.services-subpage main section:first-of-type h1,
.industries-subpage main section:first-of-type h1 {
    font-size: 2.5rem !important;
    font-weight: 800 !important;
    line-height: 1.25 !important;
    letter-spacing: -0.5px !important;
    color: #ffffff !important;
    margin-bottom: 0.6rem !important;
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

/* Hero Subtitle / Description (P) */
.hero-description,
main section:first-of-type p,
section[class*="hero"] p,
.subpage-view main section:first-of-type p,
.services-subpage main section:first-of-type p,
.industries-subpage main section:first-of-type p {
    font-size: 1.05rem !important;
    font-weight: 500 !important;
    line-height: 1.5 !important;
    color: #cbd5e1 !important;
    max-width: 700px !important;
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

/* ==========================================================================
   4. STRUCTURAL CONTENT LAYOUTS
   ========================================================================== */
.section-padding { 
    padding: 7rem 8%; 
}

.section-title {
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--primary-blue);
    text-align: center;
    margin-bottom: 0.75rem;
    letter-spacing: -1px;
}

.section-subtitle {
    font-size: 1.15rem;
    color: var(--text-muted);
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4.5rem auto;
    line-height: 1.6;
    font-weight: 500;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.split-container {
    display: flex;
    align-items: center;
    gap: 5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.split-left, .split-right { 
    flex: 1; 
}

.card {
    background: var(--white);
    padding: 3rem 2.5rem;
    border-radius: 12px;
    border: 1px solid #000000 !important; 
    box-shadow: 0 4px 6px -1px rgba(10, 37, 64, 0.02);
    transition: var(--transition-standard);
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 30px -5px rgba(0, 0, 0, 0.15);
}

.card-subheader {
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--accent-blue);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 0.5rem;
}

.card h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 0.75rem;
    letter-spacing: -0.3px;
}

.card p {
    color: var(--text-dark);
    font-size: 0.98rem;
    line-height: 1.5;
    font-weight: 500;
}

/* ==========================================================================
   5. OPERATIONS ROADMAP TIMELINE
   ========================================================================== */
.timeline-wrapper {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.timeline-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 40px;
    width: 3px;
    height: 100%;
    background-color: #e2e8f0;
    z-index: 1;
}

.timeline-item {
    position: relative;
    display: flex;
    gap: 2.5rem;
    align-items: flex-start;
    z-index: 2;
}

.timeline-content-bold {
    background: #ffffff;
    border: 3px solid #000000 !important;
    padding: 2rem;
    border-radius: 12px;
    flex: 1;
    transition: var(--transition-standard);
}

.timeline-item:hover .timeline-content-bold {
    transform: translateX(6px);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.08);
}

.timeline-content-bold h3 {
    font-size: 1.25rem;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
    font-weight: 800;
}

.timeline-content-bold p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* ==========================================================================
   6. COMPONENT WORKSPACE INTERACTION MATRIX & BUTTONS
   ========================================================================== */
.matrix-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
}

.matrix-box {
    background: var(--white);
    border: 1px solid #e2e8f0;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    font-weight: 700;
    color: var(--primary-blue);
    font-size: 1.1rem;
    box-shadow: 0 2px 4px rgba(10, 37, 64, 0.01);
}

.btn-primary {
    display: inline-block;
    background-color: var(--accent-blue);
    color: var(--white);
    padding: 1rem 2.2rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: var(--transition-standard);
    box-shadow: 0 8px 25px rgba(0, 102, 204, 0.2);
}

.btn-primary:hover {
    background-color: #0052a3;
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(0, 102, 204, 0.3);
}

.btn-secondary {
    display: inline-block;
    background-color: transparent;
    color: var(--white);
    padding: 1rem 2.2rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition-standard);
    margin-left: 1.25rem;
}

.btn-secondary:hover {
    background-color: var(--white);
    color: var(--primary-blue);
    border-color: var(--white);
    transform: translateY(-2px);
}

/* ANIMATIONS */
@keyframes navbarSlideDown {
    from { transform: translateY(-100%); }
    to { transform: translateY(0); }
}

.reveal-frame { 
    animation: framePopUp 0.8s var(--bezier-smooth) both; 
}

@keyframes framePopUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* FOOTER */
.footer {
    background-color: #050b14;
    color: #94a3b8;
    padding: 4.5rem 8%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #1e293b;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer p { 
    font-size: 0.95rem; 
    font-weight: 500; 
}

.footer-links { 
    display: flex; 
    gap: 2.5rem; 
}

.footer-links a { 
    color: #94a3b8; 
    text-decoration: none; 
    font-weight: 600; 
    font-size: 0.95rem; 
    transition: color 0.2s ease; 
}

.footer-links a:hover { 
    color: var(--white); 
}

/* TABLET BREAKPOINT */
@media (max-width: 1024px) {
    main.reveal-frame, main { margin-top: 100px !important; }
    .navbar-inner { max-width: 100% !important; padding: 0 3% !important; }
    .logo-container img { height: 75px !important; max-height: 75px !important; }
    .nav-links { gap: 1.25rem !important; }
    .nav-links a, .direct-page-link { font-size: 0.92rem !important; }
    .btn-nav-contact { padding: 0.55rem 1.25rem !important; font-size: 0.85rem !important; }
    .section-title { font-size: 2.25rem; }
    .split-container { flex-direction: column; gap: 4rem; }
}

/* ==========================================================================
   7. UNIFIED MOBILE-ONLY ENGINE (MAX-WIDTH: 768PX) - STRICT TYPOGRAPHY
   ========================================================================== */
@media screen and (max-width: 768px) {

    /* HEADER CONTAINER OVERLAY */
    header.navbar,
    .navbar { 
        height: auto !important; 
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        background: var(--white) !important;
        padding: 0.6rem 0 !important;
        margin: 0 !important;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05) !important;
        display: block !important;
        z-index: 999999 !important;
        overflow: visible !important;
    }

    /* 3-ROW STACK ENGINE */
    .navbar-inner { 
        display: flex !important;
        flex-direction: column !important; 
        justify-content: center !important; 
        align-items: center !important; 
        padding: 0 0.5rem !important; 
        gap: 0.5rem !important;
        width: 100% !important;
        height: auto !important;
        overflow: visible !important;
    }
    
    /* ROW 1: LOGO (EXACT SIZE UNCHANGED) */
    .logo-container { 
        display: flex !important; 
        align-items: center !important; 
        justify-content: center !important;
        width: 100% !important;
        height: auto !important;
    }

    .logo-container img,
    .logo-container img[src*="logo"] { 
        height: 100px !important;
        max-height: 100px !important; 
        width: auto !important; 
        max-width: 280px !important;
        object-fit: contain !important;
        margin: 0 auto !important;
        display: block !important;
    }
    
    /* ROW 2: STRAIGHT HORIZONTAL NAV ROW */
    .nav-links { 
        display: flex !important; 
        flex-direction: row !important; 
        flex-wrap: nowrap !important; 
        justify-content: center !important;
        align-items: center !important;
        width: 100% !important;
        max-width: 100% !important;
        gap: 0.85rem !important; 
        margin: 0 !important;
        padding: 0.2rem 0.5rem !important;
        overflow: visible !important;
        white-space: nowrap !important;
        position: relative !important;
    }

    .nav-split-item,
    .arrow-dropdown-wrapper {
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        padding: 0 !important;
        margin: 0 !important;
        height: auto !important;
        flex-shrink: 0 !important;
        position: relative !important;
    }

    /* 🎯 1. MOBILE HEADER FONT SCALING */
    .nav-links a, 
    .direct-page-link {
        font-family: 'Plus Jakarta Sans', sans-serif !important;
        font-size: 0.80rem !important;
        font-weight: 600 !important;
        letter-spacing: 0.2px !important;
        line-height: 1.2 !important;
        padding: 0 !important;
        margin: 0 !important;
        display: inline-flex !important;
        align-items: center !important;
        white-space: nowrap !important;
        flex-shrink: 0 !important;
    }

    .arrow-trigger {
        font-size: 0.70rem !important;
        padding: 2px 4px !important;
        margin: 0 !important;
        line-height: 1 !important;
        display: inline-flex !important;
        align-items: center !important;
        cursor: pointer !important;
    }

    /* ROW 3: CONTACT BUTTON */
    .contact-btn-wrapper {
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        width: 100% !important;
        margin-top: 0.1rem !important;
    }

    .contact-btn-wrapper .btn-nav-contact {
        display: inline-block !important;
        background-color: var(--primary-blue) !important;
        color: var(--white) !important;
        font-family: 'Plus Jakarta Sans', sans-serif !important;
        font-size: 0.78rem !important;
        font-weight: 700 !important;
        letter-spacing: 0.3px !important;
        padding: 0.35rem 1.15rem !important;
        border-radius: 50px !important;
        text-decoration: none !important;
        text-align: center !important;
        white-space: nowrap !important;
        box-shadow: 0 4px 10px rgba(10, 37, 64, 0.15) !important;
    }

    /* DROPDOWN FLYOUT PANELS */
    .dropdown-flyout-panel {
        display: none !important;
        position: absolute !important;
        top: 100% !important;
        left: 50% !important;
        transform: translateX(-50%) translateY(4px) !important;
        background: #ffffff !important;
        border: 2px solid #0a2540 !important;
        border-radius: 8px !important;
        padding: 0.35rem 0 !important;
        min-width: 220px !important;
        max-height: 260px !important; 
        overflow-y: auto !important;
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3) !important;
        z-index: 10000000 !important;
    }

    .dropdown-flyout-panel.show,
    .nav-split-item.open .dropdown-flyout-panel,
    .arrow-dropdown-wrapper.open .dropdown-flyout-panel {
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
    }

    .dropdown-flyout-panel a {
        display: block !important;
        font-family: 'Plus Jakarta Sans', sans-serif !important;
        font-size: 0.75rem !important;
        font-weight: 600 !important;
        padding: 0.55rem 0.85rem !important;
        white-space: nowrap !important;
        text-align: left !important;
        line-height: 1.35 !important;
        color: var(--text-dark) !important;
        border-bottom: 1px solid #f1f5f9 !important;
    }

    /* 🎯 2. HERO SECTION TYPOGRAPHY (ALL PAGES & SERVICES/INDUSTRIES SUBPAGES) */
    
    /* Hero Badge / Tagline */
    .hero-tagline,
    main section:first-of-type span,
    section[class*="hero"] span,
    .subpage-view main section:first-of-type span,
    .services-subpage main section:first-of-type span {
        font-size: 0.70rem !important;
        font-weight: 700 !important;
        letter-spacing: 0.8px !important;
        line-height: 1.3 !important;
    }

    /* Hero Headline (H1) */
    .hero-title,
    main section:first-of-type h1,
    section[class*="hero"] h1,
    .subpage-view main section:first-of-type h1,
    .services-subpage main section:first-of-type h1,
    h1 {
        font-size: 1.35rem !important;
        font-weight: 800 !important;
        line-height: 1.25 !important;
        letter-spacing: -0.3px !important;
    }

    /* Hero Subtitle / Description (P) */
    .hero-description,
    main section:first-of-type p,
    section[class*="hero"] p,
    .subpage-view main section:first-of-type p,
    .services-subpage main section:first-of-type p {
        font-size: 0.82rem !important;
        font-weight: 500 !important;
        line-height: 1.45 !important;
    }

    /* 🎯 3. GLOBAL BODY CONTENT TYPOGRAPHY (ALL PAGES & SERVICES/INDUSTRIES SUBPAGES) */
    
    /* Section Headings (H2) */
    h2, 
    .section-title { 
        font-size: 1.25rem !important; 
        font-weight: 800 !important;
        line-height: 1.3 !important; 
        letter-spacing: -0.3px !important;
    }

    /* Card Titles & Subsection Titles (H3) */
    h3,
    .card h3,
    .timeline-content-bold h3 { 
        font-size: 0.95rem !important; 
        font-weight: 700 !important;
        line-height: 1.35 !important; 
    }

    /* Card Subheaders / Labels */
    .card-subheader {
        font-size: 0.68rem !important;
        font-weight: 800 !important;
        letter-spacing: 0.8px !important;
    }

    /* Section Subtitles */
    .section-subtitle {
        font-size: 0.82rem !important;
        font-weight: 500 !important;
        line-height: 1.45 !important;
    }

    /* Paragraphs & List Items Body Text */
    p, 
    li,
    .card p,
    .timeline-content-bold p { 
        font-size: 0.80rem !important; 
        font-weight: 500 !important;
        line-height: 1.45 !important; 
    }

    /* Matrix Workspace Items */
    .matrix-box {
        font-size: 0.88rem !important;
        font-weight: 700 !important;
    }

    /* Action Buttons (Primary & Secondary) */
    .btn-primary, 
    .btn-secondary { 
        font-size: 0.80rem !important; 
        font-weight: 700 !important;
        letter-spacing: 0.2px !important;
        padding: 0.65rem 1rem !important; 
        text-align: center !important; 
    }

    /* Footer Text & Links */
    .footer p { 
        font-size: 0.78rem !important; 
        font-weight: 500 !important;
        line-height: 1.4 !important;
    }

    .footer-links a { 
        font-size: 0.78rem !important; 
        font-weight: 600 !important;
    }
}