/* Story Section */
.about-story {
    padding-top: 80px;
    padding-bottom: 80px;
}

.story-image {
    width: 100%;
    max-width: 460px;
    border-radius: 16px;
    object-fit: cover;
}

/* Mobile Tweaks */
@media (max-width: 768px) {
    .story-image {
        margin-bottom: 20px;
    }
}


/* Values List */
.values-list {
    list-style: none;
    padding-left: 0;
}

.values-list li {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    color: var(--dark-text);
}

/* Green Bullet */
.values-bullet {
    width: 45px;
    height: 45px;
    display: inline-block;
    border: 3px solid var(--accent-green);
    border-radius: 50%;
    background: var(--white);
    box-shadow: var(--shadow-soft);
    margin-right: 14px;
}

/* Mission Vision Divider */
.mv-divider {
    width: 75%;
    height: 1px;
    background-color: rgba(0, 87, 166, 0.25);
    margin: 40px 0;
}

/* Text Sizing */
.mission-text,
.vision-text {
    font-size: 20px;
    font-weight: 500;
    max-width: 400px;
}

.about-founder-section img {
    border-radius: var(--radius-lg);
}

.founder-img-wrapper {
    max-width: 400px;
    margin: auto;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.carousel-item img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    /* or contain */
    display: block;
}