.prices-section {
    padding: 9rem 2rem 4rem;
    background-color: #f8f9fa;
    max-width: 1200px;
    margin: 0 auto;
}

.prices-section h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: #680a09;
    font-size: 2.5rem;
}

.prices-section p {
    text-align: center;
    margin-bottom: 3rem;
    color: #666;
    font-size: 1.2rem;
}

.prices-section h3 {
    color: #680a09;
    margin: 2rem 0 1rem;
    font-size: 1.8rem;
}

.prices-section h4 {
    color: #680a09;
    margin: 1.5rem 0 1rem;
    font-size: 1.4rem;
}

.price-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 2rem;
    background: white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    border-radius: 8px;
    overflow: hidden;
}

.price-table th {
    background-color: #680a09;
    color: white;
    padding: 1rem;
    text-align: left;
    font-weight: 600;
}

.price-table td {
    padding: 1rem;
    border-bottom: 1px solid #eee;
    color: #333;
}

.price-table tr:last-child td {
    border-bottom: none;
    width: 15%;
}

.price-table tr:first-child td {
    width: 85%;
}



.price-table tr:hover td {
    background-color: #f5f5f5;
}

.price-table strong {
    color: #680a09;
}

@media (max-width: 1200px) {
    .prices-section {
        padding: 6rem 2rem 4rem;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .prices-section {
        padding: 6rem 1rem 2rem;
    }

    .prices-section h2 {
        font-size: 2rem;
    }

    .prices-section h3 {
        font-size: 1.5rem;
    }

    .prices-section h4 {
        font-size: 1.2rem;
    }

    .price-table {
        border: none;
        box-shadow: none;
        background: none;
        border-radius: 0;
    }

    .price-table thead {
        display: none;
    }

    .price-table tr {
        display: block;
        margin-bottom: 1.5rem;
        background: white;
        border-radius: 8px;
        box-shadow: 0 2px 4px rgba(0,0,0,0.1);
        border: 1px solid #eee;
        overflow: hidden;
    }

    .price-table td {
        display: block;
        text-align: center;
        padding: 0.75rem;
        position: relative;
        border-bottom: 1px solid #eee;
    }

    .price-table tr:last-child td:last-child {
        border-bottom: none;
    }

    /*.price-table td::before {*/
    /*    !*content: attr(data-label);*!*/
    /*    position: absolute;*/
    /*    left: 0.5rem;*/
    /*    width: calc(45% - 1.5rem);*/
    /*    padding-right: 0.75rem;*/
    /*    text-align: left;*/
    /*    font-weight: bold;*/
    /*    color: #680a09;*/
    /*    white-space: nowrap;*/
    /*}*/

    .price-table tr:first-child td {
        width: 100%;
    }

    .price-table td:last-child {
        border-bottom: none;
        width: 100%;
        color: #680A09;
        font-weight: 600;
    }

    .price-table tr:hover td {
        background-color: transparent;
    }
}

@media (max-width: 480px) {
    .prices-section {
        padding: 6rem 0.5rem 1.5rem;
    }

    .prices-section h2 {
        font-size: 1.8rem;
    }

    .prices-section h3 {
        font-size: 1.3rem;
    }

    .prices-section h4 {
        font-size: 1.1rem;
    }

    .price-table td,
    .price-table td::before {
        font-size: 0.85rem;
        padding-top: 0.5rem;
        padding-bottom: 0.5rem;
    }


    .price-table thead th:first-child,
    .price-table tbody td:first-child {
        width: 100%;
    }

    .price-table tbody td:last-child {
        width: 100%;
        color: #680A09;
        font-weight: 600;
    }


    .price-table td::before {
        width: calc(40% - 1.25rem);
        left: 0.5rem;
        padding-right: 0.75rem;
    }
} 