@font-face {
  font-family: 'Montserrat';
  src: url('fonts/Montserrat-VariableFont_wght.ttf') format('truetype-variations');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

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

:root {
  --navy: #001f3f;
  --navy-dark: #001428;
  --navy-light: #003d66;
  --turquoise: #00d4d4;
  --turquoise-light: #40e0e0;
  --green-dark: #1a5f3f;
  --green-accent: #2a8f6f;
  --gray-light: #f5f7fa;
  --gray-dark: #2c3e50;
  --text-dark: #1a1a1a;
  --text-light: #666;
  --border-light: #e8e8e8;
  --white: #ffffff;
}
body {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 50%, var(--navy-light) 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    }

        .maintenance-container {
            background: var(--white);
            border-radius: 12px;
            padding: 60px 40px;
            max-width: 600px;
            width: 100%;
            text-align: center;
            box-shadow: 0 20px 60px var(--navy-dark);
            backdrop-filter: blur(10px);
        }

        .logo-section {
            margin-bottom: 40px;
        }

        .logo-img {
            height: 70px;
            margin-bottom: 10px;
        }

        .logo-text {
            font-size: 32px;
            font-weight: 800;
            letter-spacing: 1px;
            background: linear-gradient(135deg, var(--turquoise), var(--green-accent));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 10px;
        }

        .tagline {
            font-size: 14px;
            color: #1a5f3f;
            letter-spacing: 2px;
            text-transform: uppercase;
        }

        .maintenance-icon {
            font-size: 80px;
            margin: 30px 0;
            opacity: 0.8;
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0%, 100% {
                opacity: 0.8;
            }
            50% {
                opacity: 1;
            }
        }

        h1 {
            color: #001428;
            font-size: 36px;
            margin-bottom: 20px;
            font-weight: 700;
        }

        .maintenance-message {
            color: #333;
            font-size: 16px;
            line-height: 1.6;
            margin-bottom: 30px;
        }

        .highlight {
            color: #00d4d4;
            font-weight: 600;
        }

        .contact-info {
            background: linear-gradient(135deg, #001428 0%, #001f3f 100%);
            color: #fff;
            padding: 30px;
            border-radius: 8px;
            margin: 30px 0;
        }

        .contact-info h3 {
            font-size: 16px;
            margin-bottom: 15px;
            color: #00d4d4;
        }

        .contact-link {
            display: inline-block;
            color: #00d4d4;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            margin: 8px 0;
        }

        .contact-link:hover {
            color: #fff;
            text-decoration: underline;
        }

        .social-links {
            margin-top: 30px;
            display: flex;
            gap: 15px;
            justify-content: center;
        }

        .social-link {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 45px;
            height: 45px;
            background: #1a5f3f;
            color: #fff;
            border-radius: 50%;
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 20px;
        }

        .social-link:hover {
            background: #00d4d4;
            color: #001428;
            transform: translateY(-3px);
        }

        .footer-text {
            color: #999;
            font-size: 12px;
            margin-top: 30px;
            padding-top: 20px;
            border-top: 1px solid #eee;
        }

        @media (max-width: 600px) {
            .maintenance-container {
                padding: 40px 25px;
            }

            h1 {
                font-size: 28px;
            }

            .logo-text {
                font-size: 36px;
            }

            .maintenance-icon {
                font-size: 60px;
            }
        }