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

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #111;
    color: #fff;
    padding: 10px 50px;
}

header .logo img {
    height: 50px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
}

nav ul li {
    cursor: pointer;
}

.banner {
    display: flex;
    overflow: hidden;
    gap: 10px;
    justify-content: center;
    padding: 20px 0;
}

.banner img {
    width: 300px;
    height: auto;
    border-radius: 8px;
}

.vpn-info {
    text-align: center;
    padding: 40px 20px;
    background: #f5f5f5;
}

.vpn-info h2 {
    margin-bottom: 20px;
}

.vpn-info .btn {
    display: inline-block;
    padding: 10px 20px;
    margin: 10px;
    background: #0073aa;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
}

.features {
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 40px 20px;
}

.features div {
    text-align: center;
}

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