.aboutHero {
    height: 400px;
    width: 100%;
}

.aboutHeroCol img {
    max-height: 400px;
    width: 100%;
    object-fit: cover;
    object-position: 10% 20%;
    filter: brightness(60%);
}

.historySection {
    margin: 2rem 0;
}

.historyCol {
    background-color: var(--lightBackground);
    width: 80%;
    margin: 0 auto;
    padding: 3rem;
    display: flex;
}

.historyRow {
    flex: 1;
    margin: 1rem;
    padding: 2rem;
    background-color: white;
}

.historyRowSlider {
    width: 100%;
    max-height: 300px;
    object-fit: cover;
}

.historyRowList  img{
    height: 2rem;
}

.locations {
    width: 80%;
    margin: 0 auto;
    padding: 3rem;
}

.locationBG img {
    height: 400px;
    width: 100%;
    object-fit: cover;
    object-position: 10% 30%;
    margin: 1rem;
}

.locations h2 {
    border-left: 1rem solid red;
}

.locationCol {
    background-color: white;
    padding: 1rem;
}

.locationRow {

}

.locationRow h4 {
    height: 3rem;
    display: flex;
    align-items: center;
}

.locationRowIcons {
    height: 2rem;
    transform: rotate(180deg);
}

.faqSection {
    width: 80%;
    margin: 0 auto;
    padding: 3rem;
}

.faqSection h2 {
    border-left: 1rem solid red;
    margin: 1rem 0;
}

.faqSection img {
    height: 300px;
    width: 100%;
    object-fit: cover;
    object-position: 10% 40%;
}

.faqCol {
    background-color: var(--lightBackground);
    padding: 2rem;
}

/* FAQ Accordion Styling Start */
.accordion {
    border-radius: 5px;
    overflow: hidden;
    background-color: white;
}

.accordion h4 {
    font-size: 0.8rem;
}

.accordion-item:last-child {
    border-bottom: none;
}

.accordion-header {
    background-color: white;
    padding: 15px;
    cursor: pointer;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.0rem;
    color: rgb(56, 54, 54);
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}

.accordion-header:hover {
    background-color: #e7e7e7;
}

.accordion-content {
    display: none;
    padding: 2rem;
    background-color: var(--light-bg);
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    font-size: 1.2rem;
    color: rgb(73, 71, 71);
    text-align: justify;
    margin: 1rem 0;
}

.accordion-content.active {
    display: block;
}

.accordion-header span {
    transition: transform 0.3s ease;
}

.accordion-header span.rotate {
    transform: rotate(180deg);
}

/* FAQ Accordion Styling End */
