body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

header.hero-section {
    background: url('http://jogaliga.com/assets/background.jpg') no-repeat center center/cover;
    color: #fff;
    text-align: center;
    padding: 50px 20px;
    height: 100vh; /* Full screen height */
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
}

.nav-links a {
    text-decoration: none;
    color: white;
    font-weight: bold;
}

.hero-content h1 {
    font-size: 2.5em;
}

.hero-content p {
    margin: 20px 0;
    font-size: 1.2em;
}

.cta-button {
    background: #ff6f00;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    font-size: 1.1em;
    border-radius: 5px;
}

.section {
    padding: 50px 20px;
    text-align: center;
}

.features-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.feature-item {
    background: #f4f4f4;
    padding: 20px;
    border-radius: 5px;
    width: 45%;
}

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

.download-button {
    background: #ff6f00;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
}

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