body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    background-color: #f4f7f6;
    color: #333;
}

.container {
    max-width: 1000px;
    margin: 20px auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

h1 {
    text-align: center;
    color: #2c3e50;
    margin-bottom: 30px;
}

.vpn-provider {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #e0e0e0;
}

.vpn-provider:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.vpn-provider h2 {
    color: #3498db;
    border-bottom: 2px solid #3498db;
    padding-bottom: 10px;
    margin-bottom: 15px;
}

.description {
    margin-bottom: 20px;
    font-size: 1.1em;
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
}

.pricing-table th, .pricing-table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.pricing-table th {
    background-color: #ecf0f1;
    font-weight: bold;
    color: #34495e;
}

.pricing-table tr:nth-child(even) {
    background-color: #f9f9f9;
}

.pricing-table tr:hover {
    background-color: #f1f1f1;
}

.price {
    font-weight: bold;
    color: #27ae60;
    font-size: 1.2em;
}

.best-value {
    background-color: #e8f6f3;
    font-weight: bold;
}

.best-value td:first-child::after {
    content: ' (Best Value)';
    color: #27ae60;
    font-weight: normal;
    font-size: 0.9em;
    margin-left: 5px;
}