/* Story Section */
.story-section {
    padding: 5rem 1rem;
    background-color: var(--background);
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.story-image {
    border-radius: 1rem;
    overflow: hidden;
}

.story-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 1rem;
}

.story-text {
    order: 2;
}

.story-title {
    font-size: 1.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    letter-spacing: 0.05em;
}

.story-paragraph {
    font-size: 1.0625rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--muted-foreground);
}

/* Values Section */
.values-section {
    padding: 5rem 1rem;
    background-color: var(--card);
}

.values-title {
    font-size: 1.875rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 3rem;
    letter-spacing: 0.05em;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.value-card {
    text-align: center;
    padding: 2rem;
}

/* Update value icons to match v0 design with SVG and colors */
.value-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    background-color: oklch(0.95 0.01 85 / 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.value-icon svg {
    width: 32px;
    height: 32px;
    stroke: var(--primary);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.value-name {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.value-description {
    font-size: 1.125rem;
    line-height: 1.75;
    color: var(--muted-foreground);
}

/* Responsive */
@media (max-width: 768px) {
    .story-grid {
        grid-template-columns: 1fr;
    }

    .story-text {
        order: 1;
    }

    .story-image {
        order: 2;
    }

    .story-title {
        font-size: 1.5rem;
    }

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