.prices-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.section-title {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    text-transform: uppercase;
}

.prices-grid {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.price-block {
    flex: 1;
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.price-block h3 {
    font-size: 22px;
    margin-bottom: 20px;
    color: var(--dark-bg);
    border-left: 4px solid var(--primary-color);
    padding-left: 15px;
}

.price-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.price-table th {
    background-color: #eee;
    padding: 12px 15px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
    border-bottom: 2px solid var(--primary-color);
}

.price-table td {
    padding: 12px 15px;
    border-bottom: 1px solid #eee;
    font-size: 16px;
}

.price-table tbody tr:nth-child(even) {
    background-color: #fafafa;
}

.price-table td:last-child {
    font-weight: bold;
    color: var(--dark-bg);
}

@media (max-width: 992px) {
    .prices-grid {
        flex-direction: column;
    }
    
    .price-block {
        width: 100%;
    }
}

.price-table td {
    padding: 12px 15px;
    border-bottom: 1px solid #eee;
    font-size: 16px;
    white-space: nowrap;
}

.price-table td:last-child {
    font-weight: bold;
    color: var(--dark-bg);
    text-align: right;
    width: 120px;
}

@media (max-width: 768px) {
    .prices-section .section-title {
        display: none;
    }

    .price-block {
        padding: 15px;
        margin-bottom: 20px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .price-table {
        min-width: 450px; 
    }

    .price-table td, 
    .price-table th {
        padding: 10px 8px;
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .prices-section .section-title {
        display: none;
    }

    .prices-grid {
        display: block;
    }

    .price-block {
        padding: 10px;
        margin-bottom: 20px;
        width: 100%;
        box-sizing: border-box;
    }

    .price-block h3 {
        font-size: 18px;
        margin-bottom: 15px;
    }

    .price-table {
        width: 100%;
        display: table;
        table-layout: fixed;
    }

    .price-table th, 
    .price-table td {
        padding: 8px 4px;
        font-size: 12px;
        word-break: break-word;
    }

    .price-table th:nth-child(1), 
    .price-table td:nth-child(1) {
        width: 25%;
    }
    
    .price-table th:nth-child(2), 
    .price-table td:nth-child(2) {
        width: 25%;
    }
    
    .price-table th:nth-child(3), 
    .price-table td:nth-child(3) {
        width: 50%;
        text-align: right;
        white-space: nowrap;
    }
}