/* ================= PRICE SECTION ================= */

.price-section {
    background: #f8f9fa;
}

.price-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.price-table {
    display: flex;
    flex-direction: column;
}

.price-row {
    display: grid;
    grid-template-columns: 1fr 150px;
    padding: 15px 0;
    border-bottom: 1px solid #eeeeee;
    align-items: center;
    transition: 0.2s ease;
}

.price-row:last-child {
    border-bottom: none;
}

.price-row:hover {
    background: #f5f9ff;
}

.price-head {
    font-weight: 600;
    color: #6c757d;
    border-bottom: 2px solid #e0e0e0;
}

.price-row div:last-child {
    text-align: right;
    font-weight: 600;
}

.price-note {
    margin-top: 20px;
    font-size: 14px;
    color: #6c757d;
}

#price {
    scroll-margin-top: 60px;
}