main {
    width: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
    grid-column: 1 / span 12;
    position: relative;
}

.content-section {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 15px;
}

.tnc-heading-wrapper {
    width: 100%;
    display: flex;
    align-items: center;
    padding-bottom: 15px;
    border-bottom: 1px solid #0000001c;
}

.tnc-heading-wrapper h1 {
    font-size: 25px;
    color: dimgray;
}

.tnc-row {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
    padding: 30px 0px;
    border-bottom: 1px solid #0000001c;
    word-wrap: break-word;
}

.tnc-row:last-child {
    border-bottom: none;
}

.tnc-row a,
.tnc-row a:visited {
    color: blue;
    text-decoration: none;
}

.tnc-row-heading {
    color: dimgray;
    font-size: 20px;
    letter-spacing: 1.9;
    line-height: 1.5;
    font-weight: bold;
}

.tnc-row span {
    letter-spacing: 1.9;
    line-height: 1.5;
    color: gray;
    font-style: italic;
}

.footer-section {
    flex-grow: 1;
    flex-shrink: 0;
    width: 100%;
    display: flex;
    border-top: 1px solid #e9e9e9;
}

/* #################################################################################*/
/*@TABLETS:
/* #################################################################################*/
@media screen and (min-width: 599px) and (max-width: 1029px) {}

/* #################################################################################*/
/*@PC:
/* #################################################################################*/
@media screen and (min-width: 1030px) {
    .content-section {
        width: 80%;
    }

    .tnc-heading-wrapper h1 {
        font-size: 52px;
    }
}