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

body {
    font-family: Arial, sans-serif;
    background-color: black;
}

header {
    background-color: #2874A6;
    color: #2874A6;
    padding: 20px;
	position: relative;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    color: #5DADE2;
    text-decoration: none;
    font-size: 24px;
}

.nav-links li {
    display: inline-block;
    margin-left: 15px;
}

.nav-links a {
    color: black;
    text-decoration: none;
    font-size: 16px;
}

.nav-btn {
    color: #5DADE2;
    background-color: transparent;
    border: none;
    font-size: 16px;
    cursor: pointer;
}
.white-box {
  background-color: white;
  padding: 10px;
}
.hero-section {
    padding: 100px 20px;
    text-align: center;
    background-image: url('https://tripetta.com/brooklynbridge.jpg');
    background-size: cover;
    background-position: center;
}
.hero-section h1 {
    font-size: 40px;
    margin-bottom: 20px;
}

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

.cta-btn {
    color: #fff;
    background-color: #eb4b13;
    border: none;
    font-size: 18px;
    padding: 10px 20px;
    cursor: pointer;
}

.content-section {
    padding: 50px 20px;
    text-align: center;
}
.content {
    flex: 1;
    margin-right: 40px;
}

.content h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.image img {
    max-width: 100%;
    height: auto;
}

footer {
    background-color: green;
    color: #fff;
    padding: 10px;
    text-align: center;
}