/* Pricing Table Styles */
.pricing-table-section {
    scroll-margin-top: 100px;
}

.table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    width: 100%;
    max-width: 100%;
    display: block;
    border-radius: 20px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.08);
    background: var(--white);
    margin-top: 40px;
}

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

.pricing-table th {
    background: var(--secondary-blue);
    color: white;
    padding: 22px 25px;
    text-align: left;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.5px;
}

.pricing-table td {
    padding: 20px 25px;
    border-bottom: 1px solid #f0f0f0;
    vertical-align: middle;
    transition: all 0.2s ease;
}

.pricing-table tr:hover td {
    background: rgba(255, 107, 157, 0.03);
}

.pricing-table .offer-name {
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 5px;
    font-size: 1.05rem;
}

.pricing-table .offer-desc {
    font-size: 0.88rem;
    color: var(--text-light);
    line-height: 1.4;
}

.pricing-table .price-val {
    font-weight: 700;
    color: var(--secondary-blue);
    font-size: 1rem;
}

.pricing-table .period-val {
    text-transform: capitalize;
    color: var(--text-light);
    font-weight: 500;
}

.btn-table {
    padding: 10px 20px;
    font-size: 0.85rem;
    border-radius: 8px;
    background: transparent;
    border: 2px solid var(--primary-pink);
    color: var(--primary-pink);
    font-weight: 700;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-table:hover {
    background: var(--primary-pink);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 157, 0.3);
}