.about-company-section {
    background: #fff;
    padding: 70px 0;
}

.about-company-image img {
    width: 100%;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 4px 18px rgba(0,0,0,0.04);
}

.about-company-content {
    padding-left: 10px;
}

.about-company-content h2 {
    font-size: 34px;
    font-weight: 600;
    margin-top: 0;
    margin-bottom: 24px;
}

.about-company-content p {
    font-size: 15px;
    line-height: 1.9;
    color: #444;
    margin-bottom: 18px;
    text-align: justify;
}

/* MISSION & VISION */

.mission-vision {
    background: #f5f5f5;
    padding: 70px 0;
}

.mission-vision h2 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 16px;
}

.mission-vision p,
.mission-vision li {
    font-size: 15px;
    color: #444;
    line-height: 1.8;
}

.mission-vision ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mv-card {
    background: #fff;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 4px 18px rgba(0,0,0,0.04);
    min-height: 300px;
    transition: all 0.2s ease;
}

.mv-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.mv-card h2 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 24px;
    text-align: center;
}

.mv-card p {
    text-align: justify;
    margin-top: 40px;
    line-height: 1.9;
}

/* TEAM */

.team-section {
    padding: 60px 0;
}

.team-card {
    text-align: center;
    margin-bottom: 36px;
    transition: all 0.2s ease;
}

.team-card:hover {
    transform: translateY(-3px);
}

.team-card img {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 14px auto;
    display: block;
    border: 3px solid #e5e5e5;
}

.team-card h4 {
    font-size: 13px;
    font-weight: 600;
    margin: 0 0 4px 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    cursor: default;
}

.team-card p {
    font-size: 13px;
    color: #777;
    margin: 0;
}

/* SINGLE TEAM */

.team-row-single {
    display: flex;
    justify-content: center;
    margin-bottom: 12px;
}

.team-row-single .team-card {
    width: 380px;
}

.team-row-single .team-card h4 {
    font-size: 13px;
    white-space: normal;
    line-height: 1.4;
}

/* TEAM DIVIDER */

.team-divider {
    border: none;
    border-top: 1px solid #e5e5e5;
    margin: 10px 0 32px 0;
}

.team-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #999;
    margin-bottom: 28px;
    text-align: center;
}

/* TEAM GRID */

.team-row-4 {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.team-row-4 .team-col {
    width: 25%;
    padding: 0 10px;
}

/* VALUES */

.values-section {
    background: #f9f9f9;
    padding: 50px 0;
}

.value-item {
    text-align: center;
    padding: 0 20px;
    margin-bottom: 24px;
}

.value-item .value-icon {
    font-size: 30px;
    margin-bottom: 12px;
    color: #c8a96e;
}

.value-item h4 {
    font-size: 15px;
    font-weight: 600;
    margin: 0 0 8px 0;
}

.value-item p {
    font-size: 13px;
    color: #666;
    margin: 0;
}

/* MOBILE */

@media (max-width: 767px) {

    .team-row-4 .team-col {
        width: 50%;
    }

}

.about-company-image {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 400px;
}

.about-company-image img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: contain;
    border: none;
    box-shadow: none;
}