.about-hero {
    background: linear-gradient(135deg, #4a7c59 0%, #3d6849 100%);
    color: #fff;
    padding: 6rem 2rem;
    text-align: center;
}

.about-hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.about-hero-content p {
    font-size: 1.4rem;
    opacity: 0.95;
}

.about-story-split {
    display: flex;
    max-width: 1400px;
    margin: 5rem auto;
    padding: 0 2rem;
    gap: 4rem;
    align-items: center;
}

.story-text,
.story-image {
    flex: 1;
}

.story-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2c2c2c;
}

.story-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.2rem;
    color: #555;
}

.story-image {
    height: 500px;
    border-radius: 4px;
    overflow: hidden;
}

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

.philosophy-section {
    background: #fafaf8;
    padding: 5rem 2rem;
}

.philosophy-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
    flex-direction: row-reverse;
}

.philosophy-image,
.philosophy-text {
    flex: 1;
}

.philosophy-image {
    height: 500px;
    border-radius: 4px;
    overflow: hidden;
}

.philosophy-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.philosophy-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2c2c2c;
}

.philosophy-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.2rem;
    color: #555;
}

.values-section {
    padding: 5rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.values-section h2 {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #2c2c2c;
}

.values-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.value-card {
    flex: 1;
    min-width: 280px;
    background: #fff;
    padding: 2.5rem;
    border-radius: 4px;
    border-left: 4px solid #4a7c59;
}

.value-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #2c2c2c;
}

.value-card p {
    color: #666;
    line-height: 1.7;
}

.process-section {
    background: #f5f1ed;
    padding: 5rem 2rem;
}

.process-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.process-wrapper h2 {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 4rem;
    color: #2c2c2c;
}

.process-steps {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.process-step {
    flex: 1;
    min-width: 250px;
    background: #fff;
    padding: 2rem;
    border-radius: 4px;
    position: relative;
}

.step-number {
    font-size: 3rem;
    font-weight: 700;
    color: #4a7c59;
    opacity: 0.2;
    margin-bottom: 1rem;
}

.process-step h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #2c2c2c;
}

.process-step p {
    color: #666;
    line-height: 1.7;
}

@media (max-width: 968px) {
    .about-story-split,
    .philosophy-container {
        flex-direction: column;
    }

    .about-hero-content h1 {
        font-size: 2.5rem;
    }

    .values-grid {
        flex-direction: column;
    }
}