.vpn-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    font-family: Arial, sans-serif;
}

.vpn-hero {
    background-color: #f8f9fa;
    padding: 40px 20px;
    text-align: center;
    border-radius: 8px;
    margin-bottom: 40px;
}

.vpn-hero h1 {
    font-size: 2.5em;
    color: #1a73e8;
    margin-bottom: 20px;
}

.vpn-hero p {
    font-size: 1.2em;
    color: #333;
    max-width: 800px;
    margin: 0 auto;
}

.vpn-packages {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 40px;
}

.package-card {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    width: 300px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.package-card:hover {
    transform: translateY(-5px);
}

.package-card h3 {
    font-size: 1.8em;
    color: #1a73e8;
    margin-bottom: 10px;
}

.package-card p {
    font-size: 1em;
    color: #555;
    margin-bottom: 20px;
}

.package-card .price {
    font-size: 1.5em;
    color: #2ecc71;
    font-weight: bold;
    margin-bottom: 20px;
}

.package-card .btn {
    background-color: #1a73e8;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1em;
    display: inline-block;
}

.package-card .btn:hover {
    background-color: #1557b0;
}

.why-vpn {
    background-color: #f8f9fa;
    padding: 40px 20px;
    border-radius: 8px;
    margin-bottom: 40px;
}

.why-vpn h2 {
    font-size: 2em;
    color: #1a73e8;
    text-align: center;
    margin-bottom: 20px;
}

.why-vpn ul {
    list-style-type: disc;
    padding-left: 40px;
    font-size: 1.1em;
    color: #333;
    max-width: 800px;
    margin: 0 auto;
}

.why-vpn li {
    margin-bottom: 10px;
    color: #333;
}

.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.whatsapp-float a {
    background-color: #25D366;
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    transition: background-color 0.3s;
}

.whatsapp-float a:hover {
    background-color: #1ebe57;
}

.whatsapp-float img {
    width: 30px;
    height: 30px;
}

@media (max-width: 768px) {
    .vpn-packages {
        flex-direction: column;
        align-items: center;
    }

    .package-card {
        width: 100%;
        max-width: 400px;
    }

    .vpn-hero h1 {
        font-size: 2em;
    }

    .whatsapp-float a {
        width: 50px;
        height: 50px;
    }

    .whatsapp-float img {
        width: 25px;
        height: 25px;
    }
}
