/* General Body Styles */
body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: #f8f9fa; /* Light gray background */
    color: #495057; /* Soft dark gray for text */
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    padding: 20px;
    box-sizing: border-box;
}

/* Main content container */
.container {
    background-color: #ffffff;
    padding: 40px 50px;
    border-radius: 16px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
    text-align: center;
    max-width: 700px;
    width: 100%;
    border-top: 5px solid #0056b3; /* Blue accent color from your brand */
}

/* Logo styling */
.logo {
    max-width: 250px;
    margin-bottom: 30px;
}

/* Main title */
.title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #212529; /* Darker text for the main heading */
    margin: 0 0 10px;
}

/* Slogan styling */
.slogan {
    font-size: 1.4rem;
    font-weight: 400;
    color: #0056b3; /* Using the brand's blue color */
    margin: 0 0 25px;
    border-top: 1px solid #e9ecef;
    padding-top: 20px;
}

/* Description text */
.description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0 0 30px;
}

/* Contact information */
.contact {
    font-size: 1rem;
    color: #6c757d;
}

.contact a {
    color: #0056b3; /* Brand blue for the link */
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact a:hover {
    color: #003d82; /* Darker blue on hover */
    text-decoration: underline;
}

/* Responsive adjustments for smaller screens */
@media (max-width: 600px) {
    .container {
        padding: 30px 25px;
    }
    
    .title {
        font-size: 1.8rem;
    }

    .slogan {
        font-size: 1.2rem;
    }
}