/* Universal reset for margins and paddings */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box; 
}

/* Ensure full viewport height and prevent scrolling (scrollbar fix) */
html, body {
    height: 100%;
    min-height: 100vh;
    width: 100%;
    overflow: hidden; 
}

/* General Settings and Full-Screen Background */
body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    color: #ffffff; 
    /* CONTENT IS CENTERED VERTICALLY AND HORIZONTALLY */
    display: flex;
    justify-content: center; /* Center Horizontal */
    align-items: center; /* Center Vertical */
    
    min-height: 100vh;
    margin: 0; 
    text-align: center;
    position: relative; 
    
    /* Background Image Settings */
    background-image: url('underconstruction.jpg'); 
    background-size: cover; 
    background-position: center center;
    background-repeat: no-repeat; 
    background-color: #000000; 
}

/* Opaque Black Layer (Overlay) for Text Readability */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4); 
    z-index: 1; 
}

/* Content Container Settings: Centered Layout */
.container {
    background-color: rgba(0, 0, 0, 0.7); 
    padding: 40px; 
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5); 
    max-width: 650px; 
    width: 90%; 
    z-index: 2; 
}

/* Typography and Colors */
h1 {
    color: #ffffff; 
    font-size: 2.5em;
    margin-bottom: 5px;
}

h2 {
    color: #ffffff; 
    font-size: 1.5em;
    margin-top: 30px;
    margin-bottom: 10px;
}

.subtitle {
    font-size: 1.2em;
    color: #007bff; /* Accent Color: Professional Blue */
    margin-bottom: 30px;
    font-weight: 700;
}

p {
    line-height: 1.7;
    margin-bottom: 15px;
}

/* Contact Link Styles (Form styles removed) */
.contact a {
    color: #007bff; /* Contact link color */
    text-decoration: none;
    font-weight: bold;
}