/* Color Variables based on the logo */
:root {
    --baytech-dark-blue: #0A1F44; 
    --baytech-light-blue: #2389E5; 
    --baytech-white: #ffffff;
    --baytech-gray: #f9f9f9; 
}

/* Global Styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--baytech-gray);
    color: var(--baytech-dark-blue);
    margin: 0;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    text-align: center;
}

.container {
    max-width: 700px;
    padding: 40px;
    background-color: var(--baytech-white);
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* Header/Logo Styles */
.logo-section {
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.logo-full {
    width: 90%; /* Scale down slightly */
    max-width: 450px;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* Content Styles */
.content-section {
    padding: 20px 0;
}

.main-message {
    font-size: 2.2em;
    color: var(--baytech-dark-blue);
    margin-top: 15px;
    margin-bottom: 10px;
    font-weight: 700;
}

.contact-text {
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 30px;
}

.contact-text a {
    color: var(--baytech-light-blue);
    text-decoration: none;
    font-weight: 600;
}

.contact-text a:hover {
    text-decoration: underline;
}

/* Construction Image */
.construction-image {
    width: 100%;
    max-width: 400px; /* Limit size for clean look */
    height: auto;
    margin: 0 auto 20px;
    display: block;
}

/* Footer/Social Styles */
.footer-section {
    border-top: 1px solid #eee;
    padding-top: 25px;
    margin-top: 20px;
}

.social-media {
    margin-top: 10px;
}

.social-icon {
    width: 32px; /* Consistent icon size */
    height: 32px;
    margin: 0 10px;
    transition: transform 0.2s ease;
}

.social-icon:hover {
    transform: scale(1.1);
}

/* Responsive Adjustments */
@media (max-width: 500px) {
    .container {
        padding: 20px;
    }
    .main-message {
        font-size: 1.8em;
    }
    .contact-text {
        font-size: 1em;
    }
    .logo-full {
        width: 100%;
    }
}