body {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    background-color: #111;
    color: #fff;
}
.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    padding: 20px;
}
.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo {
    font-size: 1.5rem;
    font-weight: bold;
}
.nav-links a {
    color: white;
    text-decoration: none;
    margin-left: 20px;
}
.hero-content {
    text-align: center;
    padding-bottom: 40px;
}
.hero-content h1 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 20px;
}
.buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}
.btn {
    background-color: transparent;
    color: white;
    border: 2px solid white;
    padding: 10px 25px;
    font-size: 1rem;
    cursor: pointer;
}
.about {
    background-color: #111;
    padding: 50px 20px;
    text-align: center;
    max-width: 800px;
    margin: auto;
}
.about p {
    font-size: 1.1rem;
    margin: 15px 0;
}
footer {
    text-align: center;
    padding: 40px 20px;
    color: #e63946;
    font-weight: bold;
}