.about-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 24px;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    /* width: 600px; */
    max-width: 700px;
    margin: 80px auto;
    overflow: hidden;
    text-align: justify;
}


section {
    margin: 10px;
    justify-content: center;
    align-items: center;
    width: 90%;
}

section p {
    font-size: 1rem;
    color: darkslategrey;
    line-height: 1.6;
    margin-left: 8px;
}

header .nav {
    display: flex;
    justify-content: center;
    gap: 32px;
    list-style: none;
    padding: 0;
    margin: 0;
}

header .nav li a {
    text-decoration: none;
    color: #ffffff;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 4px;
    transition: background 0.2s;
    text-align: justify;
}

header .nav li a:hover,
header .nav li a:focus {
    background: darkgray;
    color: white;
}

h1, h2 {
    color: rgb(114, 11, 11);
    margin: 8px;
}

h2 {
    text-align: start;
}

.about-goal .goalText {
    text-align: left;

}

.about-goal ul li {
    padding: 4px 0;
    list-style-type: disc;
    color: darkslategrey;
    margin-left: 18px;
}

@media (max-width: 700px) {
    .about-container {
        max-width: 98vw;
        margin: 16px auto;
        padding: 12px;
        margin-top: 100px;
    }
    header .nav {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    header .nav li a {
        width: 100vw;
        text-align: center;
        padding: 12px 0;
    }
}