.about-hero {
    background: linear-gradient(rgba(4, 117, 107, 0.7), rgba(4, 117, 107, 0.7)), url('../assets/images/4.jpg') center/cover no-repeat;
    height: 35vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
}

.history-text {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    font-size: 1.1rem;
}

.history-text p {
    margin-bottom: 1.5rem;
}

.vm-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.vm-card {
    background: var(--white);
    padding: 3rem 2rem;
    text-align: center;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: var(--transition);
}

.vm-card:hover {
    transform: translateY(-5px);
}

.vm-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.vm-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.founder-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: center;
}

.founder-img img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 20px 20px 0 var(--primary-color);
}

.founder-text h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.founder-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.founder-text .section-title {
    text-align: left;
}

@media (max-width: 768px) {
    .founder-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .founder-text {
        order: 1;
    }
    .founder-img {
        order: 2;
    }
    .founder-text .section-title {
        text-align: center;
    }
    .founder-img img {
        box-shadow: none;
        margin-bottom: 2rem;
    }
    .about-hero h1 {
        font-size: 2.2rem;
    }
}
