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

body, html {
    height: 100%;
    font-family: 'Inter', sans-serif;
    background-color: #ffffff; 
}

/* Content Layout */
.content-wrapper {
    display: flex;
    flex-direction: column; /* Stack items vertically so the logo goes under the card */
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

.maintenance-card {
    background: linear-gradient(40deg, #CE8AC4 0%, #930877 40%, #00337C 100%);
    border-radius: 12px;
    padding: 50px;
    max-width: 800px;
    text-align: center;
    color: #ffffff; 
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15); 
}

/* Logo Styling */
.brand-logo {
    width: 100px;
    height: 100px;
    object-fit: contain; /* Prevents the logo from stretching if it's not perfectly square */
    margin-top: 40px; /* Clean spacing between the card and the logo */
}

/* Typography */
.company-name {
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.9);
}

.main-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.main-message {
    font-size: 1.1rem;
    line-height: 1.6;
    font-weight: 300;
    margin-bottom: 30px;
}

.divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.3);
    width: 100%;
    margin: 30px 0;
}

.urgent-message {
    font-size: 1rem;
    font-weight: 400;
    margin-bottom: 30px;
}

/* Contact Grid */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    text-align: center;
    margin-bottom: 30px;
}

.contact-item {
    font-size: 0.95rem;
    line-height: 1.5;
}

.contact-item strong {
    font-weight: 600;
    display: block;
    margin-bottom: 5px;
}

.contact-item a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    transition: border-color 0.3s ease;
}

.contact-item a:hover {
    border-color: #ffffff;
}

.contact-name {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    display: block;
    margin-top: 4px;
}

/* Address Styling */
.address {
    margin-top: 30px;
    font-size: 0.9rem;
    font-weight: 300;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.7);
}

/* Responsive adjustments for mobile devices */
@media (max-width: 600px) {
    .maintenance-card {
        padding: 30px 20px;
    }
    .main-title {
        font-size: 2rem;
    }
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .brand-logo {
        margin-top: 30px;
    }
}