.bottom-container {
    flex: 1;
    display: flex;
    align-items: stretch; /* Ensures child elements stretch vertically */
    width: 100%; /* Ensures the container takes up full width */
    padding-bottom: 80px; /* Space for fixed footer */
}

.left-link, .right-link {
    display: block;
    text-decoration: none; /* Removes underline from links */
    color: inherit;
    width: 100%;
}

.left-link:hover .left-box,
.right-link:hover .right-box {
    background-color: rgba(84, 83, 83, 0.2);
    cursor: pointer;
}

.left-box {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 30px;
    background: rgba(227, 227, 227, 0.8);
    height: 100%;
    color: black;
    border-radius: 30px;
}

.left-box div {
    max-width: 80%;
}

.left-box p {
    margin: 10px 0;
    font-size: 1.1rem;
}

.inline-link {
    color: #0d6efd; /* Bootstrap blue for links */
    text-decoration: underline;
    cursor: pointer;
    word-break: break-all;
}

.right-box {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* Aligns content left */
    justify-content: center;
    text-align: left;
    padding: 30px;
    background: rgba(237, 237, 237, 0.8);
    height: 100%;
    margin: 0;
    color: black;
    border-radius: 30px;
}

.right-box p {
    font-size: 1.1rem;
}

.right-box ul {
    list-style-position: outside;
    padding-left: 20px;
    margin: 0;
}

.right-box li {
    font-size: 1.1rem;
    margin-bottom: 8px;
}
