body {
    font-family: Arial, Helvetica, sans-serif;
    text-align: center;
    padding: 0;
    margin: 0;
    background-color: #2f3f2f;
    min-height: 100vh;
    background-image: linear-gradient(20deg, #2f3f2f, #253a1e);
    color: #fff;
}

a {
    color: #fff;
    text-decoration: none;
}

a:hover,
a.active {
    color: rgb(197, 231, 47);
}

.highlighted-link {
    color: rgb(67, 119, 21);
    text-decoration: underline;
}

.header {
    background-color: #333;
    color: #fff;
    padding: 1rem;
    margin: 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    box-shadow: 0 0 10px #00000060;
    z-index: 1;
}

.header a {
    color: #fff;
    text-decoration: none;
}

.header a:hover {
    color: rgb(197, 231, 47);
}

.header a.active {
    color: rgb(197, 231, 47);
    border: 1px solid rgb(197, 231, 47);
    padding: 0.5rem 1rem;
    text-align: center;
    border-radius: 0.4rem;
    margin-left: -1rem !important;
    margin-right: 1rem !important;
}

.header-2 {
    background-color: darkgreen;
    padding: 4rem 1rem 0.5rem;
}

.content {
    padding: 2rem 3rem;
}

.main-section {
    position: relative;
    padding-top: 4rem;
    background: #316F1D;
    min-height: 400px;
}

.main-branding {
    position: absolute;
    left: 0;
    bottom: 0;
    background-image: url("../assets/branding/TN-banner-bg.png");
    background-size: cover;
    background-repeat: no-repeat;
    height: 450px;
    width: 600px;
}

.main-title {
    position: relative;
    font-size: 5rem;
    background: #316F1D;
    border-radius: 70px;
    padding-left: 3rem;
}

.yellow-section {
    background-color: #e5f838;
    color: #796e00;
;
}

.white-section {
    background-color: #fff;
    color: #000;
    text-align: left;
}

.sub-section {
    background: #316F1D;
    color: #fff;
}

.icon {
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 14px #00000060;
}

.store-badge {
    display: inline-block;
}


.foundation-badge {
    text-align: center;
    padding: 0.5rem 2rem;
    background-color: #fff;
    border-radius: 0.5rem;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 3rem;
    box-shadow: 1px 1px 5px 2px #000000 inset;
}

.feature-image {
    width: 90%;
    max-width: 1000px;
    margin: 1rem;
    box-shadow: 0 0 11px #00000040;
    border-radius: 0.5rem;
}

.store-image {
    width: 20%;
    margin: 1rem;
    box-shadow: 0 0 11px #00000040;
    border-radius: 0.5rem;
}

.underline {
    text-decoration: underline;
}

li {
    margin-bottom: 0.5rem;
}

h5 {
    font-weight: bold;
}

@media (max-width: 1100px) {
    .store-image {
        width: 60%;
    }

    .main-section {
        height: 605px;
    }

    .main-title {
        font-size: 4rem;
    }
}

@media (max-width: 992px) {
    .store-image {
        width: 40%;
    }
    .main-title {
        padding-top: 0.5rem;
        font-size: 3rem;
    }
}