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

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Header Styles */
header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #e1e1e1;
}

h1 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.tagline {
    font-size: 1.2rem;
    color: #7f8c8d;
    font-weight: 600;
}

/* Main Content Styles */
main {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.construction-image {
    margin: 2rem 0;
    max-width: 600px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

.construction-image img {
    width: 100%;
    height: auto;
    display: block;
}

.message h2 {
    font-size: 2rem;
    color: #e74c3c;
    margin-bottom: 1rem;
}

.message p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 600px;
}

.contact-info {
    background-color: #f1f1f1;
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 1.5rem;
    text-align: left;
    max-width: 500px;
}

.contact-info p {
    margin-bottom: 0.8rem;
    font-size: 1rem;
}

.contact-info strong {
    color: #2c3e50;
}

/* Footer Styles */
footer {
    text-align: center;
    padding: 1.5rem;
    margin-top: 2rem;
    color: #7f8c8d;
    font-size: 0.9rem;
    border-top: 2px solid #e1e1e1;
}

/* Responsive Design */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    
    .tagline {
        font-size: 1rem;
    }
    
    .message h2 {
        font-size: 1.5rem;
    }
    
    .construction-image {
        max-width: 100%;
    }
}