body {
    font-family: 'Poppins', sans-serif;
    background-color: #f0f4f8;
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    text-align: center;
}

.container {
    max-width: 600px;
    padding: 40px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.logo {
    width: 250px;
    margin-bottom: 20px;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

h1 span {
    color: #007BFF; /* Accent color */
    font-weight: 600;
}

p {
    font-size: 1rem;
    margin-bottom: 30px;
    color: #666;
}

.subscribe-form {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.subscribe-form input {
    padding: 10px 15px;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 5px 0 0 5px;
    outline: none;
    flex: 1;
    max-width: 300px;
}

.subscribe-form button {
    padding: 10px 20px;
    font-size: 1rem;
    border: none;
    border-radius: 0 5px 5px 0;
    background-color: #007BFF; /* Accent color */
    color: white;
    cursor: pointer;
    transition: background-color 0.3s;
}

.subscribe-form button:hover {
    background-color: #0056b3;
}

.social-links a {
    color: #007BFF;
    text-decoration: none;
    margin: 0 10px;
}
