*, *::before, *::after{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a{
    text-decoration: none;
}

:root{
    --deep-dark: #0E0504;
    --dark: #4B1F0E;
    --off-white: #EEE2DC;
    --medium: #794028;
    --medium-light: #A07855FF;
    --light-coffee: #F2EBE6;
    --light: #DFCDC0;
}

.pg-offerings{
    display: flex;
    gap: 2rem;
}

.pg-tbl-offerings{
    font-family: 'Gayathri', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.pg-tbl-offerings tr:nth-of-type(even){
    background: var(--light);
}

.pg-tbl-offerings tr:nth-of-type(odd){
    background: var(--light-coffee);
}

.pg-tbl-offerings th{
    height: 2.6rem;
    background: var(--deep-dark);
    color: var(--light);
}

.pg-tbl-offerings th:nth-child(1){
    width: 6rem;
}

.pg-tbl-offerings th:nth-child(2){
    width: 24rem;
}

.pg-tbl-offerings th:nth-child(3){
    width: 8rem;
}

.pg-tbl-offerings tr{
    height: 2.6rem;
    color: var(--deep-dark);
}

.pg-tbl-offerings td:nth-child(1){
    text-align: right;
    padding-right: 25px;
}

.pg-tbl-offerings td:nth-child(2){    
    padding-left: 20px;
}

.pg-tbl-offerings td:nth-child(3){
    text-align: right;
    padding-right: 25px;
}

.pg-tbl-offerings .td-red{
    color: red;
}

.pg-tbl-offerings .tr-section td:nth-child(2){
    background: var(--deep-dark);
    color: var(--light);
    text-align: center;
    font-size: 1.4rem;
}

@media screen and (max-width: 980px){
    .pg-offerings{
        flex-direction: column;
    }
}

@media screen and (max-width: 600px){
    .pg-offerings th, tr, td{
        font-size: 1rem;
    }

    .pg-tbl-offerings .tr-section td:nth-child(2){
        font-size: 1.2rem;
    }
}

@media screen and (max-width: 500px){
    .inner-body{
        padding: 20px;
    }
}

@media screen and (max-width: 450px){
    .pg-offerings th, tr, td{
        font-size: 0.95rem;
    }

    .pg-tbl-offerings .tr-section td:nth-child(2){
        font-size: 1rem;
    }
}