* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 48px;
    background: white;
}

.nav-links {
    display: flex;
    gap: 40px;
}

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

.nav-icons {
    display: flex;
    gap: 24px;
}

.promo-banner {
    background: #f5f5f5;
    text-align: center;
    padding: 12px;
}

.hero {
    position: relative;
    height: 600px;
}

.hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.content {
    text-align: center;
    padding: 48px 20px;
}

.title {
    font-size: 48px;
    margin-bottom: 24px;
}

.subtitle {
    font-size: 24px;
    margin-bottom: 32px;
}

.buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-top: 32px;
}

.button {
    background: black;
    color: white;
    padding: 12px 24px;
    border-radius: 24px;
    text-decoration: none;
    font-size: 16px;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background: #333;
    color: white;
}
.navbar a {
    color: white;
    text-decoration: none;
    padding: 10px;
} 

.max {
    text-align: center;
    font-size: 48px;
    margin-bottom: 24px;
    color: blue;
}