/* Basic reset and set up full height */
html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
    background: #ffffff; /* Uniform gray background for the full page */
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

/* Container for centered content, ensuring it uses the full viewport */
.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 20px; /* Padding to prevent content from touching the edges */
}

/* Styling the logo for better visibility and size */
.logo {
    max-width: 30%; /* Increase logo size */
    height: auto; /* Maintain aspect ratio */
    margin-bottom: 40px; /* More space below the logo */
}

/* Main Heading with green color */
h1 {
    font-size: 48px; /* Large font size for bold appearance */
    font-weight: bold;
    margin: 20px 0;
    color: #005A34; /* Dark green color similar to the logo */
}

/* Description with optimal spacing */
.description {
    font-size: 20px;
    color: #666;
    max-width: 700px; /* Adjust width for better text alignment */
    margin-bottom: 50px; /* Increase spacing before the contact link */
}

/* Stylish contact link with enhanced visual treatment */
.contact-link {
    font-size: 20px;
    background-color: #005A34; /* Green background matching the headline */
    color: white;
    text-decoration: none;
    padding: 18px 36px;
    border: none;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3); /* Deeper shadow for a 3D effect */
    transition: background-color 0.3s, transform 0.2s;
}

.contact-link:hover {
    background-color: #003D26; /* Darker green on hover */
    transform: translateY(-3px); /* More pronounced lift effect on hover */
}

/* Footer with minimal styling, positioned to be less obtrusive */
footer {
    position: absolute;
    bottom: 30px; /* Positioned at the bottom of the page */
    width: 100%;
    font-size: 14px;
    color: #999;
}
