/* General Body Styles */
body {
    font-family: 'Roboto', sans-serif;
    background-color: #eef1f5; /* Light grey background */
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    padding: 20px;
    box-sizing: border-box;
}

/* Main Content Container */
.container {
    max-width: 700px;
    width: 100%;
    background-color: #ffffff;
    padding: 50px 60px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    text-align: center;
    border-top: 5px solid #005a9c; /* Corporate blue top border */
}

/* Header Styles */
header h1 {
    color: #0d2c4a; /* Dark navy blue */
    font-weight: 700;
    font-size: 2.5rem; /* Responsive font size */
    margin-top: 0;
    margin-bottom: 15px;
}

/* Subtitle and Paragraph Styles */
.subtitle {
    font-size: 1.2rem;
    color: #555;
    font-weight: 300;
    margin-bottom: 30px;
}

p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #444;
}

/* Call-to-Action Button */
.contact-action {
    margin-top: 40px;
    margin-bottom: 40px;
}

.cta-button {
    display: inline-block;
    background-color: #007bff; /* Bright, professional blue */
    color: #ffffff;
    padding: 15px 35px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.cta-button:hover {
    background-color: #0056b3; /* Darker blue on hover */
    transform: translateY(-2px); /* Slight lift effect */
}

/* Footer Styles */
footer {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
}

footer p {
    font-size: 0.9rem;
    color: #777;
}

footer a {
    color: #007bff;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}