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;
}

.contact-heading-wrapper {
    width: 100%;
    display: flex;
    align-items: center;
    padding-bottom: 15px;
    border-bottom: 1px solid #0000001c;
}

.contact-heading-wrapper h1 {
    font-size: 25px;
    color: dimgray;
}

.contact-row {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
    padding: 30px 0px;
    border-bottom: 1px solid #0000001c;
}


.contact-row:last-child {
    border-bottom: none;
}

.contact-row a,
.contact-row a:visited {
    color: blue;
    text-decoration: none;
}

.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%;
    }

    .contact-heading-wrapper h1 {
        font-size: 52px;
    }
}