/* Main Content */

.main-content-wrapper {
    padding: clamp(20px, 6vw, 80px);
    background: var(--white);
    z-index: 1;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 20px;
    border-radius: 2px;
    border: solid 6px var(--border-green);
}

.main-content-wrapper p {
    font-size: clamp(16px, 1.8vw, 18px);;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
}

.main-content-wrapper h2 {
    font-family: 'adobe-caslon-pro';
    font-size: clamp(20px, 3vw, 30px);
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
    text-transform: capitalize;
}

.main-content-wrapper ul li {
    font-size: clamp(16px, 1.8vw, 18px);
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
}

.main-content-wrapper ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.main-content-wrapper table tr th {
    font-size: clamp(20px, 3vw, 30px);
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
    text-align: start;
}

.main-content-wrapper table tbody tr {
    margin-bottom: 20px;
    position: relative;
}

.main-content-wrapper table tbody tr {
    border-bottom: solid 2px var(--black);
}

.main-content-wrapper a.button {
    padding: 24px 48px;
    background: var(--green);
    color: var(--white);
    text-decoration: none;
    width: fit-content;
    margin: auto;
    border-radius: 2px;
    margin-top: 40px;
}

section.main-content a {
    color: var(--green);
}