body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    background-color: #f4f4f4;
    color: #333;
}
.container {
    text-align: center;
    background: white;
    padding: 2rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    max-width: 600px;
    width: 100%;
}
.container h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #0073e6;
}
.container p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    text-transform: capitalize;
}
.cta {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    color: white;
    background-color: #0073e6;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}
.cta:hover {
    background-color: #005bb5;
}
.contact-form {
    margin-top: 2rem;
}
.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 0.75rem;
    margin: 0.5rem 0;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
}
.contact-form button {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    color: white;
    background-color: #0073e6;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}
.contact-form button:hover {
    background-color: #005bb5;
}