.fakeheader {
    background-color: #f7f7f7;
    padding-top: 30px;
    background-image: url("/Images/b1.jpeg");
    background-size: cover;
    position: relative;
    z-index: 1;
}

.container {
    max-width: 1000px;
    margin: auto;
}

/* ABOUT SECTION */
.about {
    padding-top: 5rem;
    display: flex;
    gap: 40px;
}

.about img {
    width: 380px;
    height: auto;
    border-radius: 10px;
    z-index: 2;
}

.about-text {
    line-height: 1.5;
    color: white;
    z-index: 2;
    padding-bottom: 5rem;
}

.about-text h1 {
    margin-top: 0;
    font-size: 2.2em;
}

/* STUDY SECTION */
.study {
    background-color: #ffffff;
    border-radius: 10px;
    margin: 40px auto;
    max-width: 1000px;
    line-height: 2;
    list-style: none;
}

.study li {
    list-style: none;
}

/* LINKS SECTION */
.links {
    max-width: 1000px;
    margin: auto;
    padding-bottom: 40px;
}

.links ul {
    list-style: none;
    padding: 0;
}

.links li {
    margin-bottom: 10px;
}

.links a {
    text-decoration: none;
    color: #688d6b;
    font-weight: 500;
}

.links a:hover {
    text-decoration: underline;
}

/* RESPONSIVE: stack on small screens */
@media (max-width: 768px) {
    .about {
        flex-direction: column;
        text-align: center;
    }

    .about-text {
        max-width: 100%;
    }
}