/* ===== General Styles ===== */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: #f8f8f8;
    color: #333;
    line-height: 1.6;
}

a {
    color: #004080;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* ===== Header ===== */
header {
    background: #004080;
    color: white;
    padding: 20px 0;
    text-align: center;
}

header h1 {
    margin: 0;
    font-size: 2.2em;
}

header p {
    margin: 5px 0 15px;
    font-size: 1.1em;
}

nav a {
    margin: 0 10px;
    font-weight: bold;
    color: white;
}

nav a:hover {
    color: #ffd700;
}

/* ===== Main Content ===== */
main {
    padding: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

/* ===== VPN List Boxes ===== */
.vpn-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.vpn-item {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.2s ease;
}

.vpn-item:hover {
    transform: translateY(-3px);
}

.vpn-item h3 {
    margin-top: 0;
}

.vpn-item a {
    display: inline-block;
    margin-top: 10px;
    padding: 8px 15px;
    background: #004080;
    color: white;
    border-radius: 5px;
}

.vpn-item a:hover {
    background: #0066cc;
}

/* ===== Use Cases ===== */
.use-cases article {
    background: white;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* ===== FAQ ===== */
.faq-item {
    background: white;
    padding: 15px 20px;
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.faq-item h3 {
    margin-top: 0;
}

/* ===== Footer ===== */
footer {
    background: #eee;
    text-align: center;
    padding: 20px 0;
    font-size: 0.9em;
    color: #555;
}

footer p {
    margin: 5px 0;
}

/* ===== Special Disclaimer ===== */
.disclaimer {
    background: #fff3cd;
    border: 1px solid #ffeeba;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 30px;
    color: #856404;
    font-size: 0.95em;
}

/* ===== Responsive ===== */
@media (min-width: 768px) {
    .vpn-list {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .vpn-item {
        flex: 1 1 calc(50% - 20px);
    }
}

@media (min-width: 1200px) {
    .vpn-item {
        flex: 1 1 calc(33% - 20px);
    }
}
