.price-list-section {
    padding: 80px 0;
    background: #fff;
}

.price-list-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.price-list-container h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #000;
}

/* Table Responsive Wrapper */
.table-responsive {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border: 1px solid #eee;
    border-radius: 8px;
}

.price-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}

.price-table th, 
.price-table td {
    padding: 15px 20px;
    text-align: left;
    border-bottom: 1px solid #eee;
    font-size: 15px;
}

.price-table th {
    background: #fdfdfd;
    font-weight: 700;
    color: #000;
    text-transform: uppercase;
    font-size: 14px;
}

.price-table tr:last-child td {
    border-bottom: none;
}

.price-table td {
    color: #444;
}

.price-table tr:hover {
    background-color: #f9f9f9;
}

.price-note {
    margin-top: 20px;
    font-size: 14px;
    color: #777;
    font-style: italic;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .price-list-section {
        padding: 40px 0;
    }
    
    .price-table th, 
    .price-table td {
        padding: 12px 15px;
        font-size: 14px;
    }
}
