.price-section {
    padding: 60px 0;
    background-color: #f8f9fa;
    border-top: 4px solid #fdd048;
}

.price-section .section-title {
    text-align: center;
    margin-bottom: 40px;
}

.price-section .section-title h2 {
    font-size: 32px;
    font-weight: 700;
    color: #333;
    position: relative;
    padding-bottom: 15px;
}

.price-section .section-title h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: #fdd048;
}

.price-filter {
    max-width: 500px;
    margin: 0 auto 30px;
}

.price-filter .form-control {
    border-radius: 25px;
    padding: 12px 20px;
    border: 1px solid #ddd;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.price-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    margin-bottom: 30px;
    overflow: hidden;
    border-top: 4px solid #fdd048;
    transition: transform 0.3s ease;
}

.price-card:hover {
    transform: translateY(-5px);
}

.price-card-header {
    background: #fff;
    padding: 20px;
    border-bottom: 1px solid #eee;
}

.price-card-header h4 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: #333;
}

.price-table-container {
    padding: 15px;
}

.price-table {
    margin-bottom: 0;
}

.price-table thead th {
    background-color: #fafafa;
    border-top: none;
    color: #666;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 0.5px;
}

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

.price-table td {
    vertical-align: middle;
    font-size: 14px;
    color: #444;
}

.price-table .price-val {
    font-weight: 700;
    color: #d1a400;
}

.price-note {
    padding: 10px 20px;
    background: #fffbe6;
    font-size: 12px;
    color: #856404;
    font-style: italic;
}

.location-name {
    font-weight: 500;
}

@media (max-width: 768px) {
    .price-section {
        padding: 40px 0;
    }
    .price-table thead th {
        font-size: 10px;
    }
    .price-table td {
        font-size: 13px;
    }
}
