/* Our Story Section */
.our-story {
    padding: 40px 0;
    text-align: center;
}

.our-story h2 {
    color: #1e88e5; /* Example color, adjust as needed */
    font-size: 2rem;
    margin-bottom: 20px;
}

.dark-mode .our-story h2 {
    color: #bbb;
}

.story-content {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
}

.story-image {
    flex: 1 1 300px;
    max-width: 400px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

.dark-mode .story-image {
    box-shadow: 0 0 5px rgba(255, 255, 255, 0.1);
}

.story-image img {
    width: 100%;
    height: auto;
    display: block;
}

.story-text {
    flex: 1 1 500px;
    text-align: left;
}

.story-text p {
    color: #555;
}

.dark-mode .story-text p {
    color: #eee;
}

/* Our Mission & Vision Section */
.our-mission-vision {
    padding: 40px 0;
    text-align: center;
    background-color: #f9f9f9; /* Light background to differentiate */
}
.dark-mode .container .our-story {
    background-color: #222;
}

.dark-mode .our-mission-vision {
    background-color: #222;
    color: #bbb;
}


.mission-vision-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 20px;
    margin-top: 20px;
}

.mission, .vision {
    flex: 1 1 300px;
    padding: 20px;
    border-radius: 8px;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.dark-mode .mission, .dark-mode .vision {
    background-color: #333;
    color: #eee;
    box-shadow: 0 2px 5px rgba(255, 255, 255, 0.05);
}

.mission h3, .vision h3 {
    color: #0d47a1; /* Example color */
    margin-bottom: 10px;
}

.dark-mode .mission h3, .dark-mode .vision h3 {
    color: #bbb;
}

.mission p, .vision p {
    color: #666;
    font-size: 16px;
}

.dark-mode .mission p, .dark-mode .vision p {
    color: #ddd;
}

/* Meet the Team Section */
.meet-the-team {
    padding: 40px 0;
    text-align: center;
}

.meet-the-team h2 {
    color: #1e88e5;
    font-size: 2rem;
    margin-bottom: 10px;
}

.dark-mode .meet-the-team h2 {
    color: #bbb;
}

.team-intro {
    color: #666;
    margin-bottom: 30px;
}

.dark-mode .team-intro {
    color: #ddd;
}

.team-members {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.team-member {
    flex: 1 1 200px;
    text-align: center;
}

.team-member img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 10px;
    border: 2px solid #1e88e5;
}

.dark-mode .team-member img {
    border-color: #bbb;
}

.team-member h3 {
    color: #333;
    margin-bottom: 5px;
    font-size: 1.2rem;
}

.dark-mode .team-member h3 {
    color: #eee;
}

.role {
    color: #777;
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.dark-mode .role {
    color: #ccc;
}

.bio {
    color: #555;
    font-size: 0.85rem;
}

.dark-mode .bio {
    color: #ddd;
}
.dark-mode .our-story {
    background-color: #333;
}

/* Our Values Section */
.our-values {
    padding: 40px 0;
    background-color: #eef5ff; /* Light background */
    text-align: center;
}


.our-values h2 {
    color: #0d47a1;
    font-size: 2rem;
    margin-bottom: 20px;
}

.dark-mode .our-values h2 {
    color: #bbb;
}

.values-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    max-width: 800px;
    margin: 20px auto 0;
}

.values-list li {
    background-color: #fff;
    color: #333;
    padding: 15px 20px;
    border-radius: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    font-weight: bold;
    font-size: 1rem;
}

.dark-mode .values-list li {
    background-color: #444;
    color: #eee;
    box-shadow: 0 2px 5px rgba(255, 255, 255, 0.05);
}

/* Why Join Us Section */
.why-join-us {
    padding: 40px 0;
    text-align: center;
}

.why-join-us h2 {
    color: #1e88e5;
    font-size: 2rem;
    margin-bottom: 20px;
}

.dark-mode .why-join-us h2 {
    color: #bbb;
}

.why-join-us p {
    color: #666;
    margin-bottom: 30px;
}

.dark-mode .why-join-us p {
    color: #ddd;
}

.join-benefits {
    list-style: none;
    padding: 0;
    max-width: 600px;
    margin: 20px auto;
    text-align: left;
}

.join-benefits li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    color: #555;
}

.dark-mode .join-benefits li {
    border-bottom-color: #555;
    color: #ddd;
}

.join-benefits li:last-child {
    border-bottom: none;
}

