/* About Page Styles */
main {
    padding: 20px;
}

h1 {
    font-size: 36px;
    margin-bottom: 20px;
}

h2 {
    font-size: 24px;
    margin-top: 40px;
    margin-bottom: 20px;
}

ul {
    list-style-type: none;
    padding: 0;
}

/* History Page Styles */
.timeline {
    margin-top: 40px;
}

.timeline li {
    margin-bottom: 20px;
}

/* Leadership Page Styles */
.leadership-team {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.leadership-team li {
    width: 30%;
    margin-bottom: 40px;
    text-align: center;
}

.leadership-team img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin-bottom: 10px;
}

/* Careers Page Styles */
.job-openings li {
    margin-bottom: 40px;
}

.job-openings h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.btn {
    display: inline-block;
    background-color: #333;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    margin-top: 20px;
}