.future-plans {
    background: linear-gradient(to right top, rgba(169, 169, 169, 0.5), var(--c11)), url('/assets/img/about/about_illus.jpg');
    background-size: cover;
    background-position: center;
    clip-path: polygon(0 2vw, 100% 0, 100% calc(100% - 2vw), 0 100%);
    color: var(--c0);
    max-height: 100%;
}

.future-plans-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 2rem auto 0;
    padding: 0;
}

.future-plans-content p {
    font-family: var(--body-font);
    font-size: var(--text-small-p);
    line-height: 1.2;
    text-align: center;
    width: 100%;
    margin: 0;
    max-width: 500px;
}

.future-plans-content ul {
    padding: 0;
    margin: 1rem 0;
}

.future-plans-content ul li {
    font-family: var(--body-font);
    font-size: var(--text-small-p);
    line-height: 1.5;
    text-align: left;
    width: 100%;
    margin: 0.5rem 0;
    padding: 0.75rem;
    background-color: rgba(0, 0, 0, 0.75);
    border-radius: 10px;
    opacity: 0;
    transition: all 0.5s ease-in-out;
    transform: translateX(-50px);
    list-style-type: none;
    display: flex;
    align-items: center;
}

.future-plans-content ul li.visible {
    opacity: 1;
    transform: translateY(0);
}

.future-plans-content ul li:before {
    content: "☐";
    margin-right: 0.5rem;
    font-weight: bold;
    flex-shrink: 0;
}

/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
    .future-plans-content p,
    .future-plans-content ul li {
        font-size: var(--text-small-p);
    }

    .future-plans-content ul li {
        padding: 0.5rem;
        max-width: 300px;
    }

    .future-plans-content ul li:before {
        content: "☐";
        margin-right: 1rem;
        font-weight: bold;
    }

    .future-plans-content ul li.visible {
        transform: translateY(0);
    }

    .future-plans-content ul li.visible {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) {

    .future-plans-content p,
    .future-plans-content ul li {
        font-size: var(--text-small-p);
    }

    .future-plans-content ul li {
        padding: 0.75rem;
        max-width: 400px;
    }

    .future-plans-content ul li:before {
        content: "☐";
        margin-right: 0.8rem;
        font-weight: bold;
    }

    .future-plans-content ul li.visible {
        transform: translateY(0);
    }

    .future-plans-content ul li.visible {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {

    .future-plans-content p,
    .future-plans-content ul li {
        font-size: var(--text-small-p);
    }

    .future-plans-content ul li {
        padding: 0.75rem;
        max-width: 500px;
    }

    .future-plans-content ul li:before {
        content: "☐";
        margin-right: 0.7rem;
        font-weight: bold;
    }

    .future-plans-content ul li.visible {
        transform: translateY(0);
    }

    .future-plans-content ul li.visible {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {

    .future-plans-content p,
    .future-plans-content ul li {
        font-size: var(--text-small-p);
    }

    .future-plans-content ul li {
        padding: 0.75rem;
        max-width: 500px;
    }

    .future-plans-content ul li:before {
        content: "☐";
        margin-right: 0.6rem;
        font-weight: bold;
    }

    .future-plans-content ul li.visible {
        transform: translateY(0);
    }

    .future-plans-content ul li.visible {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {
   
    .future-plans-content p,
    .future-plans-content ul li {
        font-size: var(--text-small-p);
    }

    .future-plans-content ul li {
        padding: 0.75rem;
        max-width: 100%;
    }

    .future-plans-content ul li:before {
        content: "☐";
        margin-right: 0.5rem;
        font-weight: bold;
    }

    .future-plans-content ul li.visible {
        transform: translateY(0);
    }

    .future-plans-content ul li.visible {
        opacity: 1;
        transform: translateY(0);
    }
}