body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #ffffff;
}

header {
    background-color: #09142e;
    padding: 10px 0;
}

nav {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 0 50px;
}

#logo {
    font-size: 0.9em;
    color: #4a4a4a;
    margin: 10px;
}


nav a {
    color: white;
    text-decoration: none;
    padding: 0 10px;
}

#hero {
    background-image: url('bg.jpg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}


#hero h1 {
    color: #4abce8;
    font-size: 3em;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    background-color: rgba(0, 0, 0, 0.7);
    padding: 10px;
}

#hero p {
    font-size: 1.5em;
    color: white;
    font-weight: bold;

}

main {
    padding: 50px;
    color: #09142e;
}

section {
    margin-bottom: 50px;
}

#hero {
    background-image: url('https://images.unsplash.com/photo-1501555088652-021faa106b9b');
    background-size: cover;
    height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 800px) {
    #hero {
        height: 300px;
    }

    #hero h1 {
        font-size: 2em;
    }

    main {
        padding: 20px;
    }
}

@media (max-width: 600px) {
    nav {
        flex-direction: column;
        text-align: center;
    }

    nav a {
        padding: 10px 0;
    }

    #hero {
        height: 200px;
    }

    #hero h1 {
        font-size: 1.5em;
    }
}

footer {
    background-color: #F4F6F9;
    color: #09142e;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px 0;
}

h2 {
    text-transform: uppercase;
    color: #0d2438;
}

