.pricing-table {
    width: 100%;
    border-collapse: collapse;
    font-family: 'Poppins', sans-serif;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0,0,0,0.05);
}

.pricing-table thead {
    background-color: var(--primary);
    color: white;
}

.pricing-table th,
.pricing-table td {
    padding: 1rem;
    text-align: center;
    border: 1px solid #ddd;
}

.pricing-table tbody tr:hover {
    background-color: rgba(0, 0, 0, 0.03);
}

@media (max-width: 768px) {
    .pricing-table th,
    .pricing-table td {
        padding: 0.7rem;
        font-size: 0.9rem;
    }
}
