
        /* Fallback Styles in case static.aashe.org CSS is incomplete for the maintenance layout */
        :root {
            --aashe-blue: #005A8C;
            --aashe-green: #8BBE3F;
            --text-color: #333333;
            --footer-bg: #2b2b2b;
        }
        body {
            font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
            margin: 0;
            padding: 0;
            color: var(--text-color);
            display: flex;
            flex-direction: column;
            min-height: 100vh;
            background-color: #f5f5f5;
        }
        
        /* Identical Header Structure */
        .site-header {
            background: #ffffff;
            border-bottom: 2px solid var(--aashe-green);
            padding: 15px 0;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        }
        .container {
            width: 90%;
            max-width: 1140px;
            margin: 0 auto;
        }
        .header-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .site-logo img {
            max-height: 70px;
            width: auto;
        }
        /* Main Maintenance Content */
        .site-content {
            flex: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 60px 20px;
        }
        .maintenance-container {
            background: #ffffff;
            padding: 50px 60px;
            border-radius: 8px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.08);
            max-width: 800px;
            width: 100%;
        }
        .maintenance-container h1 {
            color: var(--aashe-blue);
            margin-top: 0;
            font-size: 2.2em;
            margin-bottom: 20px;
        }
        .maintenance-container p {
            font-size: 16px;
            line-height: 1.7;
            margin-bottom: 20px;
        }
        .maintenance-container a {
            color: var(--aashe-green);
            text-decoration: none;
            font-weight: bold;
        }
        .maintenance-container a:hover {
            text-decoration: underline;
        }
        .schedule-box {
            background-color: #f9fbff;
            border-left: 5px solid var(--aashe-blue);
            padding: 20px 25px;
            margin: 25px 0;
            border-radius: 0 4px 4px 0;
        }
        .schedule-box p {
            margin: 8px 0;
            font-size: 15px;
        }
        
        /* Identical Footer Structure */
        .site-footer {
            background-color: var(--footer-bg);
            color: #ffffff;
            padding: 50px 0 20px;
            font-size: 14px;
        }
        .footer-widgets {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            margin-bottom: 40px;
            gap: 30px;
        }
        .footer-widget {
            flex: 1;
            min-width: 250px;
        }
        .footer-widget h4 {
            font-size: 18px;
            margin-bottom: 20px;
            color: #ffffff;
            border-bottom: 2px solid var(--aashe-green);
            padding-bottom: 10px;
            display: inline-block;
        }
        .footer-widget p, .footer-widget ul, .footer-widget li {
            line-height: 1.6;
            margin: 0;
            padding: 0;
            list-style: none;
        }
        .footer-widget li {
            margin-bottom: 12px;
        }
        .footer-widget a {
            color: #cccccc;
            text-decoration: none;
            transition: color 0.3s;
        }
        .footer-widget a:hover {
            color: var(--aashe-green);
        }
        .social-links {
            margin-top: 15px;
        }
        .social-links a {
            display: inline-block;
            margin-right: 15px;
        }
        .social-links img {
            width: 28px;
            height: 28px;
        }
        .footer-bottom {
            border-top: 1px solid #444444;
            padding-top: 25px;
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            flex-wrap: wrap;
            gap: 20px;
            color: #999999;
            font-size: 12px;
        }
        .copyright {
            flex: 2;
            min-width: 300px;
        }
        .footer-links {
            flex: 1;
            text-align: right;
            min-width: 250px;
        }
        .footer-links a {
            color: #999999;
            margin-left: 20px;
            text-decoration: none;
        }
        .footer-links a:hover {
            color: var(--aashe-green);
        }

        @media (max-width: 768px) {
            .footer-bottom {
                flex-direction: column;
                text-align: left;
            }
            .footer-links {
                text-align: left;
            }
            .footer-links a {
                margin-left: 0;
                margin-right: 20px;
                display: inline-block;
                margin-top: 10px;
            }
            .maintenance-container {
                padding: 30px 20px;
            }
        }
    