body, html {
    height: 100%; /* Ensure the full height for vertical centering */
    margin: 0;
    padding: 0;
    display: flex; /* Use flexbox for the body to center the card */
    justify-content: center; /* Center horizontally */
    align-items: center; /* Center vertically */
    font-family: 'Arial', sans-serif;
    background-color: #f5f5f5;
}

.container {
    text-align: center;
    padding: 20px;
    background-color: white;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    border-radius: 8px;
    width: fit-content; /* Optional: Adjust width as needed */
    margin: auto; /* Ensures the element is centered in case Flexbox doesn't work */
}

header {
    background-color: #0053f0;
    color: #fff;
    padding: 10px 20px;
    text-align: center;
}

.logo {
    font-weight: bold;
}

.hero {
    background-color: #f0f0f0;
    padding: 50px 20px;
    text-align: center;
}

h1 {
    color: #0053f0;
}

p {
    margin: 20px 0;
    color: #666;
}

.contact-btn {
    background-color: #0053f0;
    color: #ffffff;
    padding: 10px 30px;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.contact-btn:hover {
    background-color: #0038ab;
}
