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

body {
    font-family: 'Open Sans', sans-serif;
    background-color: #f7f7f7;
    color: #333;
}

header {
    background-color: #1D3557;
    padding: 20px;
    text-align: center;
    color: #fff;
}

header h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 36px;
    margin-bottom: 5px;
}

header p {
    font-size: 18px;
}

.hero {
    background: url('https://via.placeholder.com/1500x800') no-repeat center center/cover;
    height: 80vh;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-direction: column;
}

.hero h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 48px;
    margin-bottom: 20px;
}

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

.email-signup {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.email-signup input {
    padding: 10px;
    font-size: 16px;
    width: 300px;
    border-radius: 5px;
    border: none;
}

.email-signup button {
    padding: 10px 20px;
    background-color: #F1A40B;
    color: white;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.email-signup button:hover {
    background-color: #E89A0A;
}

.about {
    padding: 40px 20px;
    text-align: center;
    background-color: #fff;
}

.about h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 36px;
    margin-bottom: 20px;
}

.about p {
    font-size: 18px;
    line-height: 1.6;
    color: #555;
}

footer {
    background-color: #1D3557;
    color: #fff;
    padding: 20px;
    text-align: center;
}

footer p {
    font-size: 14px;
    margin-bottom: 5px;
}

footer p a {
    color: #F1A40B;
    text-decoration: none;
}

footer p a:hover {
    text-decoration: underline;
}