.about-hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    padding: 4rem 0;
}

.about-hero-container {
    grid-template-columns: 1.1fr 0.9fr;
    padding-top: 2rem;
}

.about-hero-content {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    max-width: 600px;
}

.about-hero-content p {
    font-size: 1.1rem;
} 

.about-hero h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    font-weight: 700;
}

.about-hero-description {
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.9;
}

.about-hero-image {
    display: flex;
    justify-content: center;
}

.about-hero-image img {
    width: 100%;
    max-width: 480px;
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    display: block;
}

.environment .section-title {
    margin-bottom: 2rem;
}

.environment-panel {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
    gap: 1.5rem;
    align-items: stretch;
    margin-bottom: 1.5rem;
    --panel-height: clamp(260px, 32vw, 420px);
}

.environment-panel.reverse {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
}

.environment-main,
.environment-grid {
    height: var(--panel-height);
}

.environment-main img,
.environment-grid img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    border-radius: 1rem;
}

.environment-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
}

.team-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.team-card {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 2rem;
    min-height: 240px;
    background: var(--secondary-bg-color);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 6px 16px rgba(0,0,0,0.08);
}

.team-image {
    width: 220px;
    height: 220px;
    overflow: hidden;
    border-radius: 0.75rem;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.team-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.75rem;
}

.team-info h3 {
    font-size: 1.4rem;
    font-weight: 600;
}

.team-info p {
    line-height: 1.8rem;
    font-size: 1.1rem;
    opacity: 0.8;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.value-item {
    background: var(--secondary-bg-color);
    box-shadow: 0 6px 16px rgba(0,0,0,0.06);
    padding: 1.5rem 1.25rem;
    border-radius: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.value-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    font-size: 1.2rem;
}

.value-item h3 {
    font-size: 1.2rem;
    font-weight: 600;
}

.value-item p {
    font-size: 1rem;
    line-height: 1.5;
    opacity: 0.8;
    max-width: 200px;
}

.values {
    border-top: 1px solid rgba(0,0,0,0.08);
}

@media (max-width: 900px) {
    .environment-panel,
    .environment-panel.reverse {
        grid-template-columns: 1fr;
    }

    .environment-main {
        min-height: 320px;
    }

    .environment-grid {
        min-height: 320px;
    }
}

@media (max-width: 700px) {
    .team-card {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .team-card img {
        max-width: 200px;
        margin: 0 auto;
    }

    .values-grid {
        grid-template-columns: 1fr 1fr;
    }

    .environment-panel {
        gap: 1rem;
        margin-bottom: 1rem;
    }

    .environment-grid {
        gap: 1rem;
    }
}