
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f2f2f2;
    color: #333;
    line-height: 1.6;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.container {
    max-width: 800px;
    background-color: white;
    padding: 40px 20px;
    margin: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    border: 1px solid #ddd;
}

.logo {
    width: 100px;
    margin-bottom: 20px;
}

h1 {
    color: #2c3e50;
    margin-bottom: 20px;
}

.cta {
    background-color: #3498db;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    margin: 20px 0;
    display: inline-block;
    text-decoration: none;
}

.cta:hover {
    background-color: #2980b9;
}

.email-form {
    margin-top: 20px;
}

.email-input {
    padding: 10px;
    width: 70%;
    max-width: 300px;
    border: 1px solid #ddd;
    border-radius: 5px;
    margin-bottom: 10px;
}

.submit-button {
    padding: 10px 20px;
    border: none;
    background-color: #006778; /* Color from logo */
    color: white;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

.submit-button:hover {
    background-color: #004d5b; /* Darker shade of the color */
}

footer {
    margin-top: 40px;
    font-size: 12px;
    color: #555;
}

.privacy-link {
    margin-top: 20px;
    font-size: 12px;
    color: #3498db;
    text-decoration: none;
}

.privacy-link:hover {
    text-decoration: underline;
}
