
.about-page {
    /* margin-left: 1%;
    margin-right: 1%; */
    background-color: #f0e5e5e3;
    font-size:20px ;
    
}

.about-page * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* Specific styles for the About page */
.about-page .about-hero {
    /* background-color: #497fb3; */
    color: #fff;
    text-align: center;
    /* padding: 6rem 1rem; */
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 95px 20px;
    margin-top: 70px;
}

.about-page .about-title {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: var(--fw-600);
    font-family: 'Montserrat', sans-serif;
    
}

.about-page .about-subtitle {
    font-size: 2rem;
    max-width: 600px;
    margin: 0 auto;
    color: var(--eerie-black-1);
    font-weight: 500;
}

.about-page .about-story,
.about-page .about-mission {
    padding: 3rem 1%;
    max-width: 1200px;
    margin: 0 auto;
}

.about-page .about-section-title {
    font-size: 3rem;
    margin-bottom: 4rem;
    text-align: center;
    color: #a50808;
    font-family: 'Montserrat', sans-serif;
}

.about-page .about-story-content {
    display: flex;
    align-items: center;
    gap: 10rem;
    justify-content: space-between;
    padding-left: 10px;
}

.about-page .about-story-text {
    flex: 1;
}

.about-page .about-story-text p {
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

.about-page .about-story-image {
    flex: 1;
}

.about-page .about-team-photo {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.about-page .about-mission {
    background-color: #f0f0f0;
    text-align: center;
    margin-bottom: 15px;
    border-radius: 10px;
}

.about-page .about-mission-text {
    font-size: 2.2rem;
    max-width: 800px;
    margin: 0 auto;
    color: #0a0f3f;
    font-weight: 550;
}

@media (max-width: 768px) {
    .about-page .about-title {
        font-size: 2.5rem;
    }

    .about-page .about-story-content {
        flex-direction: column-reverse;
    }

    .about-page .about-story-image {
        margin-bottom: 2rem;
    }
}