* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif; /* ou 'Poppins', 'Montserrat', 'Open Sans' */
    background-color: #f5f5f5;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.container {
    display: flex;
    max-width: 1200px;
    width: 100%;
    align-items: center;
}

.content {
    flex: 1;
    padding: 20px;
}

.content h1 {
    font-size: 3em;
    margin-bottom: 10px;
}

.content p {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #777;
}

.subscribe {
    margin-top: 20px;
}

.subscribe p {
    font-size: 1.1em;
    margin-bottom: 10px;
}

form {
    display: flex;
    align-items: center;
}

form input {
    padding: 10px;
    font-size: 1em;
    border: 1px solid #ccc;
    border-radius: 5px;
    width: 250px;
    margin-right: 10px;
}

form button {
    padding: 10px 20px;
    font-size: 1em;
    background-color: #4CAF50; /* Green button and link color */
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

form button:hover {
    background-color: #45a049;
}

a {
    color: #4CAF50; /* Same green color for links */
    text-decoration: none;
}

a:hover {
    text-decoration: underline; /* Optional underline on hover */
}

.image img {
    max-width: 600px;
    width: 100%;
    object-fit: cover;
    border-radius: 10px;
    transform: scaleX(-1); /* This flips the image horizontally */
}
