/* Core Page Styling */
body, html {
    height: 100%;
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; /* A modern font */
    background-color: #f4f7f6; /* A very light gray, almost off-white */
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Main Content Container */
.container {
    text-align: center;
    padding: 60px;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05); /* Soft, subtle shadow */
    max-width: 600px;
}

/* Logo Styling */
.logo-box {
    margin-bottom: 40px;
}

.logo-box img {
    max-width: 100%; /* Ensures it scales */
    height: auto;
    border-radius: 8px; /* Slightly softens the edges of the image */
}

/* Text Content Styling */
.text-content h1 {
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 2.5rem; /* Large and bold */
}

.text-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 15px;
    color: #666;
}

/* Contact Info Styling */
.contact {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #eaeaea; /* Subtle separator line */
}

.contact p {
    margin-bottom: 10px;
}

.contact a {
    color: #007bff; /* Standard 'link blue' */
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

.contact a:hover {
    color: #0056b3; /* Darker blue on hover */
}