.about-hero {
    background: #2a2a2a;
    padding: 140px 40px 100px;
}

.about-hero-content {
    max-width: 720px;
    margin-left: 10%;
}

.about-hero h1 {
    font-size: 56px;
    color: #ffffff;
    font-weight: 300;
    line-height: 1.2;
}

.story-section {
    padding: 120px 40px;
    display: flex;
    gap: 80px;
    align-items: center;
}

.story-image-left {
    flex: 1;
    background: #e8e4df;
}

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

.story-text-right {
    flex: 1;
    padding-right: 8%;
}

.story-text-right h2 {
    font-size: 38px;
    margin-bottom: 28px;
    font-weight: 400;
}

.story-text-right p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #3a3a3a;
}

.values-asymmetric {
    background: #f0ede8;
    padding: 100px 40px;
    position: relative;
    min-height: 600px;
}

.value-block {
    position: absolute;
    background: #ffffff;
    padding: 38px 34px;
    max-width: 360px;
    box-shadow: 0 3px 16px rgba(0,0,0,0.08);
}

.value-block.block-1 {
    left: 8%;
    top: 80px;
}

.value-block.block-2 {
    right: 12%;
    top: 180px;
}

.value-block.block-3 {
    left: 30%;
    bottom: 100px;
}

.value-block h3 {
    font-size: 24px;
    margin-bottom: 14px;
    font-weight: 500;
}

.value-block p {
    font-size: 15px;
    line-height: 1.6;
    color: #4a4a4a;
}

.team-offset {
    padding: 100px 40px;
}

.team-offset h2 {
    font-size: 42px;
    margin-bottom: 60px;
    text-align: center;
    font-weight: 400;
}

.team-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    justify-content: center;
}

.team-member {
    max-width: 320px;
    background: #ffffff;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.team-member.offset-left {
    margin-right: 40px;
}

.team-member.offset-right {
    margin-left: 40px;
    margin-top: 60px;
}

.team-member.offset-center {
    margin-top: -40px;
}

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

.team-member h3 {
    font-size: 22px;
    margin: 24px 24px 10px;
    font-weight: 500;
}

.team-member p {
    font-size: 15px;
    line-height: 1.6;
    color: #5a5a5a;
    margin: 0 24px 24px;
}

.cta-section-about {
    background: #1a1a1a;
    padding: 100px 40px;
}

.cta-content-offset {
    max-width: 600px;
    margin-left: auto;
    margin-right: 12%;
    text-align: right;
}

.cta-content-offset h2 {
    font-size: 42px;
    color: #ffffff;
    margin-bottom: 32px;
    font-weight: 400;
}

@media (max-width: 768px) {
    .about-hero-content {
        margin-left: 0;
    }

    .about-hero h1 {
        font-size: 36px;
    }

    .story-section {
        flex-direction: column;
        padding: 60px 20px;
        gap: 40px;
    }

    .story-text-right {
        padding-right: 0;
    }

    .values-asymmetric {
        padding: 60px 20px;
        min-height: auto;
    }

    .value-block {
        position: static;
        max-width: 100%;
        margin-bottom: 30px;
    }

    .team-layout {
        flex-direction: column;
        align-items: center;
    }

    .team-member.offset-left,
    .team-member.offset-right,
    .team-member.offset-center {
        margin: 0;
    }

    .cta-content-offset {
        margin-right: 0;
        text-align: center;
    }
}
