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

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;

    color: #333;
}
main, .herox {
	    background: url('financial-background.jpg') no-repeat center center/cover;
	height:80vh;
}
header {
    background: #004080;
    color: #fff;
    padding: 10px 0;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

header .logo h1 {
    font-size: 24px;
}

header nav ul {
    list-style: none;
    display: flex;
}

header nav ul li {
    margin-left: 20px;
}

header nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
}

.hero {
    text-align: center;
    padding: 100px 20px;
    color: #fff;
    background: rgba(0, 64, 128, 0.7);
}

.hero h2 {
    font-size: 48px;
    margin-bottom: 20px;
}

.hero p {
    font-size: 24px;
    margin-bottom: 40px;
}

footer {
    background: #004080;
    color: #fff;
    text-align: center;

	position:fixed;
	bottom: 0px;
	   display: flex;
width: -webkit-fill-available;
    align-items: center;
}

footer p {
    margin: 0;
	    justify-content: space-between;
}

@media (max-width: 768px) {
    header .container {
        flex-direction: column;
        text-align: center;
    }

    header nav ul {
        flex-direction: column;
    }

    header nav ul li {
        margin: 10px 0;
    }

    .hero h2 {
        font-size: 36px;
    }

    .hero p {
        font-size: 18px;
    }

    .cta-button {
        font-size: 18px;
        padding: 10px 20px;
    }
}
