.about-hero {
    background: linear-gradient(135deg, #1a365d 0%, #2563eb 100%);
    padding: 100px 0;
    text-align: center;
    color: #ffffff;
}

.about-hero h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
}

.about-hero .lead {
    font-size: 22px;
    color: #e0e7ff;
}

.about-story {
    padding: 100px 0;
    background-color: #ffffff;
}

.story-layout {
    display: flex;
    gap: 60px;
    align-items: center;
}

.story-image {
    flex: 1;
    background-color: #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
}

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

.story-content {
    flex: 1;
}

.story-content h2 {
    font-size: 36px;
    color: #1a365d;
    margin-bottom: 25px;
}

.story-content p {
    color: #475569;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 17px;
}

.values-section {
    padding: 100px 0;
    background-color: #f8fafc;
}

.values-section h2 {
    text-align: center;
    font-size: 40px;
    color: #1a365d;
    margin-bottom: 60px;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.value-card {
    flex: 0 0 calc(50% - 15px);
    background: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.value-card h3 {
    font-size: 24px;
    color: #1a365d;
    margin-bottom: 15px;
}

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

.approach-section {
    padding: 100px 0;
    background-color: #ffffff;
}

.approach-layout {
    display: flex;
    gap: 60px;
    align-items: center;
}

.approach-content {
    flex: 1;
}

.approach-content h2 {
    font-size: 36px;
    color: #1a365d;
    margin-bottom: 25px;
}

.approach-content p {
    color: #475569;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 17px;
}

.approach-image {
    flex: 1;
    background-color: #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
}

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

.expertise-section {
    padding: 100px 0;
    background: linear-gradient(to bottom, #f1f5f9, #ffffff);
}

.expertise-section h2 {
    text-align: center;
    font-size: 40px;
    color: #1a365d;
    margin-bottom: 60px;
}

.expertise-areas {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.expertise-item {
    flex: 0 0 calc(33.333% - 20px);
    background: #ffffff;
    padding: 30px;
    border-left: 4px solid #2563eb;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.expertise-item h4 {
    font-size: 20px;
    color: #1a365d;
    margin-bottom: 10px;
}

.expertise-item p {
    color: #64748b;
    line-height: 1.6;
    font-size: 15px;
}

@media (max-width: 768px) {
    .story-layout,
    .approach-layout {
        flex-direction: column;
    }

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

    .value-card {
        flex: 1 1 100%;
    }

    .expertise-item {
        flex: 1 1 100%;
    }
}