/* Technical Page Styles - Complete Corporate Branding */
/* ============================================
   Brand Colors:
   Header Background: #f8f9fa
   Logo Color: #0071bb
   H1 Heading: #00355d (blend between #000000 and #0071bb)
   H2-H6 Headings: #01436e
   Text Color: #5e5e5e
   Gradient Buttons: from #006cb7 to #00528a
   Block Borders: #e0e0e0
   ============================================ */

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

html, body {
    width: 100%;
    min-height: 100vh;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    color: #5e5e5e;
    line-height: 1.6;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 50%, #e8f4f8 100%);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Container - Critical for Centering All Content */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================
   HEADER SECTION
   ============================================ */
.tech-header {
    background-color: #f8f9fa;
    border-bottom: 1px solid #e0e0e0;
    padding: 25px 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    width: 100%;
}

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

.main-logo {
    max-height: 60px;
    width: auto;
    display: inline-block;
    filter: brightness(1) contrast(1.1);
}

/* ============================================
   MAIN CONTENT SECTION
   ============================================ */
.maintenance-wrapper {
    flex: 1;
    width: 100%;
    padding: 60px 0 0 0; /* Remove bottom padding */
    display: flex;
    align-items: center;
    background: transparent; /* Transparent background */
}

.maintenance-container {
    display: block !important;
        background: white;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    animation: slideUp 0.6s ease-out;
    /* width: 100% !important; */
    width: 100%;
}
/* Navigation block - Table of Contents */
.maintenance-container nav,
.maintenance-container nav[aria-label="Table of contents"] {
    display: block !important;
    width: 100% !important;
    float: none !important;
    margin: 0 0 40px 0 !important;
    padding: 25px !important;
    background: #f8f9fa !important;
    border: 1px solid #e0e0e0 !important;
    border-radius: 8px !important;
    clear: both !important;
}
/* All sections - force block layout */
.maintenance-container section {
    display: block !important;
    width: 100% !important;
    float: none !important;
    clear: both !important;
    margin-bottom: 30px !important;
    padding: 0 !important;
}

/* Specific fix for section after nav */
.maintenance-container nav + section,
.maintenance-container nav ~ section {
    clear: both !important;
    display: block !important;
    width: 100% !important;
    float: none !important;
}
/* Clear any floats */
.maintenance-container::after,
.maintenance-container nav::after {
    content: "" !important;
    display: table !important;
    clear: both !important;
}

/* Force flex container to column if it uses flexbox */
.maintenance-container:has(nav) {
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
}
/* Table of Contents styling */
.maintenance-container nav h2 {
    color: #01436e !important;
    font-size: 20px !important;
    margin-bottom: 15px !important;
    font-weight: 600 !important;
}

.maintenance-container nav ol {
    margin: 0 !important;
    padding-left: 25px !important;
}

.maintenance-container nav ol li {
    margin-bottom: 10px !important;
    color: #5e5e5e !important;
}

.maintenance-container nav ol li a {
    color: #0071bb !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
}

.maintenance-container nav ol li a:hover {
    color: #00528a !important;
    text-decoration: underline !important;
}


/* / a */
a {
    color: #2870c2;
    text-decoration: none;
    position: relative;
    display: inline-block;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding-bottom: 2px;
}

a:hover {
    color: #1e5a9e;
    transform: translateY(-1px);
}

a::before,
a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    height: 1px;
    width: 0;
    transition: width 0.3s ease;
}

a::before {
    background: #2870c2;
    z-index: 1;
}

a::after {
    background: linear-gradient(90deg, #4090e5, #2870c2, #4090e5);
    background-size: 200% 100%;
    height: 2px;
    bottom: -1px;
    animation: shimmer 2s linear infinite;
    opacity: 0;
    transition: width 0.3s ease, opacity 0.3s ease;
}

a:hover::before {
    width: 100%;
}

a:hover::after {
    width: 100%;
    opacity: 0.5;
}

@keyframes shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

a:hover {
    text-shadow: 
        0 0 1px rgba(40, 112, 194, 0.4),
        0 0 3px rgba(40, 112, 194, 0.2);
}
/* / a */


/* Ensure sections have proper spacing */
.maintenance-container section h1,
.maintenance-container section h2,
.maintenance-container section h3 {
    color: #01436e !important;
    margin-top: 0 !important;
    margin-bottom: 20px !important;
}

.maintenance-container section p {
    color: #5e5e5e !important;
    line-height: 1.7 !important;
    margin-bottom: 15px !important;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .maintenance-container nav {
        padding: 20px !important;
        margin-bottom: 30px !important;
    }
    
    .maintenance-container section {
        margin-bottom: 25px !important;
    }
}

/* ============================================
   ABSOLUTE FALLBACK - Maximum Priority
   ============================================ */
html body main .maintenance-container nav,
html body main .maintenance-container section {
    position: relative !important;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    float: none !important;
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
}

/* Reset any inline-block or inline elements */
html body main .maintenance-container > * {
    display: block !important;
    vertical-align: top !important;
}


/* Content container */
.content-info {
  box-sizing: border-box;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 50px 32px;

  display: block;            
  text-align: left;

  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  animation: slideUp 0.6s ease-out;
}

.content-info > * { margin: 0 0 24px; }
.content-info > *:last-child { margin-bottom: 0; }





/* Pharma Animation Styling */
.pharma-animation-wrapper {
    text-align: center;
    margin-bottom: 30px;
    width: 100%;
    overflow: hidden;
    background: linear-gradient(135deg, #003a5c 0%, #004466 50%, #005580 100%);
    border-radius: 12px;
    padding: 20px 0;
    position: relative;
    box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(0, 113, 187, 0.4);
}


.pharma-animation-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 200%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.15), transparent);
    animation: pharmaShine 8s linear infinite;
}

@keyframes pharmaShine {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

.pharma-animation {
    width: 100%;
    height: auto;
    max-height: 200px;
    display: block;
}

/* Add pulsating background glow */
@keyframes pharmaGlow {
    0%, 100% {
        box-shadow: inset 0 0 20px rgba(0, 212, 255, 0.1);
    }
    50% {
        box-shadow: inset 0 0 40px rgba(0, 212, 255, 0.2);
    }
}

.pharma-animation-wrapper {
    animation: pharmaGlow 4s ease-in-out infinite;
}

/* Typography */
.maintenance-title {
    color: #00355d;
    font-size: 36px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 30px;
    letter-spacing: -0.5px;
}

h1 {
    color: #00355d;
    margin-top: 20px;
    margin-bottom: 10px;
}

h2, .card-title {
    color: #01436e;
    font-size: 24px;
    font-weight: 500;
    margin-top: 30px;
    margin-bottom: 10px;
}

h3 {
    color: #01436e;
    font-size: 20px;
    font-weight: 500;
    margin-top: 20px;
    margin-bottom: 10px;
}

/* Main Content Area */
.maintenance-content {
    max-width: 100%;
}

.maintenance-description {
    color: #5e5e5e;
    font-size: 18px;
    text-align: center;
    margin-bottom: 40px;
    line-height: 1.7;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* ============================================
   CARDS SECTION
   ============================================ */
.info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
    align-items: stretch; /* Ensure all cards have same height */
}

.info-card {
    background: #fafbfc;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    
    /* Flexbox layout to push button to bottom */
    display: flex;
    flex-direction: column;
    min-height: 320px; /* Minimum height to ensure consistency */
}

/* Alternative approach using grid (uncomment to use):
.info-card {
    display: grid;
    grid-template-rows: auto auto 1fr auto;
    gap: 15px;
}
.card-icon { grid-row: 1; }
.card-title { grid-row: 2; }
.card-text { grid-row: 3; }
.btn-animated { grid-row: 4; }
*/

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #006cb7 0%, #00528a 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.info-card:hover::before {
    transform: scaleX(1);
}

.info-card:hover {
    border-color: #0071bb;
    box-shadow: 0 8px 20px rgba(0, 113, 187, 0.15);
    transform: translateY(-3px);
}

.card-icon {
    margin-bottom: 20px;
    flex-shrink: 0; /* Prevent icon from shrinking */
}

.card-icon svg {
    transition: transform 0.3s ease;
}

.info-card:hover .card-icon svg {
    transform: scale(1.1);
}

.card-title {
    color: #01436e;
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 15px;
    flex-shrink: 0; /* Prevent title from shrinking */
}

.card-text {
    color: #5e5e5e;
    margin-bottom: 20px;
    line-height: 1.6;
    flex-grow: 1; /* Allow text to take available space */
    display: flex;
    align-items: center; /* Center text vertically in its space */
    text-align: center;
}

/* Button container to ensure consistent positioning */
.info-card .btn-animated {
    margin-top: auto; /* Push button to bottom */
    align-self: center; /* Center button horizontally */
    width: 80%; /* Make buttons same width for visual consistency */
    max-width: 200px; /* Maximum width for larger screens */
}

/* ============================================
   BUTTONS - ANIMATED GRADIENT BUTTONS
   ============================================ */

/* Main animated button container */
.btn-animated {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    background: linear-gradient(135deg, #006cb7 0%, #00528a 100%);
    color: white !important;
    box-shadow: 0 4px 15px rgba(0, 108, 183, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    white-space: nowrap; /* Prevent text wrapping */
}

/* Button text */
.btn-text {
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
    margin-right: 6px;
}

/* Button icon (arrow) */
.btn-icon {
    position: relative;
    z-index: 2;
    font-size: 16px;
    transition: transform 0.3s ease;
    display: inline-block;
    line-height: 1;
}

/* Hover effects for animated button */
.btn-animated:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 108, 183, 0.4);
    color: white !important;
    text-decoration: none;
}

.btn-animated:hover .btn-text {
    transform: translateX(-3px);
}

.btn-animated:hover .btn-icon {
    transform: translateX(3px);
}

/* Shine effect animation */
.btn-animated::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
    z-index: 1;
}

.btn-animated:hover::before {
    left: 100%;
}

/* Ripple effect background */
.btn-animated::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-animated:active::after {
    width: 300px;
    height: 300px;
}

/* Alternative button styles (if needed) */
.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, #006cb7 0%, #00528a 100%);
    color: white !important;
    border: 2px solid transparent;
    box-shadow: 0 4px 15px rgba(0, 108, 183, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 108, 183, 0.4);
    color: white !important;
    text-decoration: none;
}

.btn-secondary {
    background: transparent;
    color: #006cb7 !important;
    border: 2px solid #006cb7;
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #006cb7 0%, #00528a 100%);
    color: white !important;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 108, 183, 0.3);
    text-decoration: none;
}

/* ============================================
   ADDITIONAL INFO SECTION
   ============================================ */
.additional-info {
    margin-top: 50px;
    padding-top: 50px;
    border-top: 1px solid #e0e0e0;
}

.additional-info h3 {
    text-align: center;
    margin-top: 20px;
    margin-bottom: 10px;
}

.additional-info p {
    color: #5e5e5e;
    text-align: center;
    margin-bottom: 15px;
    line-height: 1.7;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* ============================================
   STATUS INDICATOR
   ============================================ */
.status-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 40px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 50px;
    border: 1px solid #e0e0e0;
}

.status-dot {
    width: 10px;
    height: 10px;
    background: #00c851;
    border-radius: 50%;
    margin-right: 10px;
    animation: blink 2s infinite;
}

.status-text {
    color: #01436e;
    font-size: 14px;
    font-weight: 500;
}

/* ============================================
   FOOTER SECTION - OVERRIDE style.css WITH MAX SPECIFICITY
   ============================================ */
/* Use multiple selectors to increase specificity over style.css */
body footer.maintenance-footer,
html body footer.maintenance-footer,
footer.maintenance-footer,
.maintenance-footer,
footer {
    background: linear-gradient(135deg, #006cb7 0%, #00528a 100%) !important;
    background-image: linear-gradient(135deg, #006cb7 0%, #00528a 100%) !important;
    background-color: #006cb7 !important;
    color: #ffffff !important;
    padding: 35px 0 !important;
    margin-top: 60px !important;
    width: 100% !important;
    position: relative !important;
    overflow: hidden !important;
    min-height: 100px !important;
}

/* Kill ALL overlays from style.css */
body footer.maintenance-footer::before,
body footer.maintenance-footer::after,
footer.maintenance-footer::before,
footer.maintenance-footer::after,
.maintenance-footer::before,
.maintenance-footer::after,
footer::before,
footer::after {
    display: none !important;
    content: none !important;
    background: none !important;
    background-image: none !important;
    background-color: transparent !important;
}

/* Container - centered content */
body footer.maintenance-footer .container,
footer.maintenance-footer .container,
.maintenance-footer .container {
    position: relative !important;
    z-index: 10 !important;
    width: 100% !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 0 20px !important;
    text-align: center !important;
    background: transparent !important;
    background-color: transparent !important;
    background-image: none !important;
}

/* Footer wrapper */
body footer.maintenance-footer .footer-simple,
footer.maintenance-footer .footer-simple,
.footer-simple {
    text-align: center !important;
    padding: 10px !important;
    width: 100% !important;
    background: transparent !important;
    background-color: transparent !important;
    background-image: none !important;
}

/* Copyright text - SIMPLE WHITE, NOT BOLD */
body footer.maintenance-footer .footer-copyright,
footer.maintenance-footer .footer-copyright,
.footer-copyright {
    color: #ffffff !important;
    font-size: 14px !important;
    font-weight: normal !important; /* Regular weight, not bold */
    margin: 0 auto 12px auto !important;
    text-align: center !important;
    letter-spacing: normal !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2) !important;
    line-height: 1.6 !important;
    display: block !important;
    width: 100% !important;
    background: transparent !important;
}

/* Links row */
body footer.maintenance-footer .footer-links-row,
footer.maintenance-footer .footer-links-row,
.footer-links-row {
    color: #ffffff !important;
    font-size: 14px !important;
    font-weight: normal !important;
    margin: 0 auto !important;
    text-align: center !important;
    padding: 0 !important;
    line-height: 1.8 !important;
    display: block !important;
    width: 100% !important;
    background: transparent !important;
}

/* Copyright year - NOT BOLD */
body footer.maintenance-footer #currentYear,
footer.maintenance-footer #currentYear,
#currentYear {
    color: #ffffff !important;
    font-weight: normal !important;
    text-shadow: none !important;
}

/* Separators - subtle */
body footer.maintenance-footer .separator,
footer.maintenance-footer .separator,
.separator {
    color: rgba(255, 255, 255, 0.4) !important;
    margin: 0 10px !important;
    font-weight: normal !important;
    font-size: 12px !important;
    display: inline !important;
}

/* Footer links - SIMPLE TEXT LINKS, NO BUTTONS */
body footer.maintenance-footer .footer-link,
footer.maintenance-footer .footer-link,
footer.maintenance-footer a.footer-link,
.footer-link,
footer a {
    color: #ffffff !important;
    text-decoration: none !important;
    padding: 0 !important;
    transition: color 0.3s ease !important;
    display: inline !important;
    font-weight: normal !important;
    font-size: 14px !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2) !important;
    margin: 0 !important;
    background: none !important;
    background-color: transparent !important;
    background-image: none !important;
    border-radius: 0 !important;
    border: none !important;
    box-shadow: none !important;
    transform: none !important;
}

/* Simple hover - just color change and underline */
body footer.maintenance-footer .footer-link:hover,
footer.maintenance-footer .footer-link:hover,
footer.maintenance-footer a.footer-link:hover,
.footer-link:hover,
footer a:hover {
    color: #a8d1ed !important;
    text-decoration: underline !important;
    background: none !important;
    background-color: transparent !important;
    transform: none !important;
    box-shadow: none !important;
    border: none !important;
}

/* Focus state - simple */
body footer.maintenance-footer .footer-link:focus,
footer.maintenance-footer .footer-link:focus,
.footer-link:focus {
    outline: 1px dotted rgba(255, 255, 255, 0.7) !important;
    outline-offset: 2px !important;
}

/* Ensure all paragraphs in footer are styled correctly */
body footer.maintenance-footer p,
footer.maintenance-footer p,
.maintenance-footer p {
    margin: 0 !important;
    padding: 0 !important;
    width: 100% !important;
    color: #ffffff !important;
    background: transparent !important;
    font-weight: normal !important;
}

/* Override any box-shadows or other effects from style.css */
footer,
footer *,
.maintenance-footer,
.maintenance-footer * {
    box-shadow: none !important;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    body footer.maintenance-footer,
    footer.maintenance-footer,
    .maintenance-footer {
        padding: 30px 0 !important;
        margin-top: 40px !important;
    }
    
    .footer-copyright,
    .footer-links-row,
    .footer-link {
        font-size: 13px !important;
    }
    
    .separator {
        margin: 0 8px !important;
    }
}

@media (max-width: 480px) {
    .maintenance-footer {
        padding: 30px 0;
    }
    
    .footer-copyright {
        font-size: 13px;
        margin-bottom: 15px;
        padding: 0 10px;
    }
    
    /* Stack links vertically on very small screens */
    .footer-links-row {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }
    
    .separator {
        display: none;
    }
    
    .footer-link {
        display: block;
        width: auto;
        min-width: 140px;
        text-align: center;
        margin: 4px 0;
    }
}
    }
    
    .footer-simple {
        padding: 10px;
    }
    
    .footer-copyright {
        font-size: 14px;
        margin-bottom: 20px;
    }
    
    .footer-links-row {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .maintenance-footer {
        padding: 30px 0;
        min-height: auto;
    }
    
    .footer-copyright {
        font-size: 13px;
        margin-bottom: 18px;
        line-height: 1.5;
    }
    
    /* Hide separators on mobile */
    .separator {
        display: none;
    }
    
    /* Stack links with better visibility on mobile */
    .footer-link {
        display: inline-block;
        margin: 5px 8px;
        font-size: 13px;
        border: 1px solid rgba(255, 255, 255, 0.5);
        border-radius: 20px;
        padding: 7px 14px;
        background: rgba(255, 255, 255, 0.15);
        font-weight: 500;
    }
    
    .footer-link:hover {
        background: rgba(255, 255, 255, 0.25);
        border-color: #ffffff;
    }
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* Apply fade in animation to footer */
.footer-simple {
    animation: fadeInUp 0.8s ease-out;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 113, 187, 0.4);
    }
    70% {
        box-shadow: 0 0 0 20px rgba(0, 113, 187, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(0, 113, 187, 0);
    }
}

@keyframes blink {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .maintenance-container {
        padding: 30px 20px;
    }
    
    .maintenance-title {
        font-size: 28px;
    }
    
    .maintenance-description {
        font-size: 16px;
    }
    
    .info-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .info-card {
        min-height: auto; /* Allow natural height on mobile */
    }
    
    .card-title {
        font-size: 20px;
    }
    
    .btn-animated {
        width: 100%; /* Full width on mobile */
        max-width: none;
    }
}

@media (max-width: 480px) {
    .maintenance-title {
        font-size: 24px;
    }
    
    .maintenance-container {
        border-radius: 8px;
        padding: 25px 15px;
    }
    
    h2, .card-title {
        font-size: 18px;
    }
    
    h3 {
        font-size: 16px;
    }
    
    .info-card {
        padding: 20px;
    }
    
    .maintenance-description {
        font-size: 15px;
    }
    
    .card-text {
        font-size: 14px;
    }
}

/* Ensure equal height cards on larger screens */
@media (min-width: 769px) {
    .info-cards {
        display: grid;
        grid-auto-rows: 1fr; /* Equal height rows */
    }
}

/* ============================================
   PRINT STYLES
   ============================================ */
@media print {
    .tech-header, .maintenance-footer {
        display: none;
    }
    
    .maintenance-container {
        box-shadow: none;
        border: 1px solid #ccc;
    }
    
    .btn-primary, .btn-secondary {
        border: 1px solid #333;
        color: #333 !important;
        background: none !important;
    }
}

/* ============================================
   CRITICAL FOOTER OVERRIDE - MUST BE LAST
   ============================================ */
footer.maintenance-footer {
    background: linear-gradient(135deg, #006cb7 0%, #00528a 100%) !important;
    background-color: #006cb7 !important;
}

/* Force all footer elements to have white text */
footer.maintenance-footer * {
    color: #ffffff !important;
    text-align: center !important;
}

/* Ensure footer is not hidden or transparent */
footer {
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
}

/* Override any white background that might be applied */
.maintenance-footer,
footer,
footer.maintenance-footer {
    background-image: linear-gradient(135deg, #006cb7 0%, #00528a 100%) !important;
    background-color: #006cb7 !important;
}

/* ============================================
   ABSOLUTE FINAL OVERRIDE - KILL style.css
   ============================================ */
html body footer,
html body footer.maintenance-footer,
html body .maintenance-footer {
    background: linear-gradient(135deg, #006cb7 0%, #00528a 100%) !important;
    background-image: linear-gradient(135deg, #006cb7 0%, #00528a 100%) !important;
    background-color: #006cb7 !important;
}

/* Kill ALL pseudo elements that might add white bg */
html body footer::before,
html body footer::after,
html body footer *::before,
html body footer *::after {
    display: none !important;
    content: none !important;
    background: transparent !important;
    background-image: none !important;
    background-color: transparent !important;
}

/* Force simple text styling */
html body footer a,
html body footer .footer-link {
    background: transparent !important;
    background-color: transparent !important;
    background-image: none !important;
    border: none !important;
    padding: 0 !important;
    font-weight: normal !important;
}

/* END OF FILE */