/* General Styles */
body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    background: url('background.jpg') no-repeat center center fixed; /* Background image */
    background-size: cover; /* Cover the entire background */
    color: #333;
    text-align: center;
    padding: 50px;
    margin: 0;
}

/* Container for content */
.container {
    background-color: rgba(255, 255, 255, 0.95); /* Slightly more opaque white */
    border-radius: 15px; /* More rounded corners */
    padding: 40px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2); /* Deeper shadow for more depth */
    max-width: 600px; /* Limit width for better readability */
    margin: auto; /* Center the container */
}

/* Logo Styles */
.logo img {
    max-width: 80%; /* Adjust logo size */
    height: auto;
    margin-bottom: 30px;
}

/* Heading Styles */
h1 {
    font-size: 3.5em; /* Larger heading */
    margin-bottom: 20px;
    color: #080b0e; /* Darker color for a professional look */
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1); /* Subtle text shadow */
}

/* Paragraph Styles */
p {
    font-size: 1.2em;
    margin-bottom: 30px;
    line-height: 1.6; /* Improved line height for readability */
}

/* Contact Info Styles */
.contact-info {
    margin-top: 20px;
    font-size: 1em;
}

/* Link Styles */
.contact-info a {
    color: #2980b9; /* Blue color for links */
    text-decoration: none; /* Remove underline */
    transition: color 0.3s, transform 0.3s; /* Smooth transition for hover effect */
}

.contact-info a:hover {
    color: #3498db; /* Lighter blue on hover */
    transform: scale(1.05); /* Slightly enlarge on hover */
}

/* Responsive Design */
@media (max-width: 600px) {
    h1 {
        font-size: 2.5em; /* Smaller heading on mobile */
    }
    p {
        font-size: 1em; /* Smaller text on mobile */
    }
}