/* Reset styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* General styles */
body {
    font-family: Arial, sans-serif;
    background-color: #4C5161;
    color: white;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

header {
    background-color: black;
    padding: 20px 0;
}

    header .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    header h1 {
        color: white;
    }

nav ul {
    list-style: none;
    display: flex;
}

    nav ul li {
        margin-right: 20px;
    }

        nav ul li a {
            color: white;
            text-decoration: none;
        }

/* Hero section */
#hero {
    padding: 100px 0;
    text-align: center;
}

    #hero h2 {
        margin-bottom: 20px;
    }

    #hero form {
        margin-top: 20px;
    }

    #hero input[type="email"] {
        padding: 10px;
        width: 300px;
    }

    #hero button {
        padding: 10px 20px;
        background-color: white;
        color: #4C5161;
        border: none;
        cursor: pointer;
    }

        #hero button:hover {
            background-color: #4C5161;
            color: white;
        }

.img-logo{
    width: 100px;
    height: auto;
}

/* Footer */
footer {
    background-color: black;
    color: white;
    text-align: center;
    padding: 20px 0;
}


/* Responsive styles */
@media only screen and (max-width: 768px) {
    header .container {
        flex-direction: column;
        align-items: center;
    }

    nav ul {
        margin-top: 20px;
    }

    #hero {
        padding: 50px 0;
    }

        #hero input[type="email"] {
            width: 100%;
            max-width: 300px;
        }

        #hero button {
            width: 100%;
        }
}
