.story-section {
    padding: 150px 40px;
    background: var(--black);
    color: var(--white);
    clip-path: polygon(0 60px, 100% 0, 100% 100%, 0 100%);
    margin-top: -60px;
    width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
}

.story-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
}

.story-content {
    font-size: 20px;
    line-height: 1.8;
}

.story-content h2 {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(40px, 6vw, 70px);
    margin-bottom: 40px;
    line-height: 1.2;
}

.story-content p {
    margin-bottom: 30px;
    opacity: 0.9;
}

.values-section {
    padding: 150px 40px;
    background: var(--white);
    width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
}

.values-container {
    max-width: 1600px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
}

.values-header {
    text-align: center;
    margin-bottom: 100px;
}

.values-title {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(50px, 8vw, 100px);
    line-height: 1.1;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    width: 100%;
    box-sizing: border-box;
}

.value-card {
    background: var(--yellow);
    padding: 60px 40px;
    text-align: center;
    border: 3px solid var(--black);
    transition: all 0.3s ease;
    width: 100%;
    box-sizing: border-box;
}

.value-card:hover {
    transform: translate(-8px, -8px);
    background: var(--accent);
    color: var(--white);
}

.value-card:nth-child(2) {
    background: var(--black);
    color: var(--white);
}

.value-card:nth-child(2):hover {
    background: var(--yellow);
    color: var(--black);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: var(--black);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    margin: 0 auto 30px;
}

.value-card:nth-child(2) .value-icon {
    background: var(--white);
    color: var(--black);
}

.value-card:hover .value-icon {
    background: var(--white);
    color: var(--black);
}

.value-card:nth-child(2):hover .value-icon {
    background: var(--black);
    color: var(--white);
}

.value-card .value-title {
    font-size: 28px;
    font-weight: 900;
    margin-bottom: 20px;
}

.value-description {
    font-size: 16px;
    line-height: 1.7;
}

.stats-section {
    padding: 150px 40px;
    background: var(--accent);
    color: var(--white);
    text-align: center;
    width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
}

.stats-container {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
}

.stats-title {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(50px, 8vw, 100px);
    line-height: 1.1;
    margin-bottom: 80px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 60px;
    width: 100%;
    box-sizing: border-box;
}

.stat-item .stat-number {
    font-family: 'DM Serif Display', serif;
    font-size: 70px;
    line-height: 1;
    margin-bottom: 15px;
}

.stat-item .stat-label {
    font-size: 16px;
    opacity: 0.9;
}

.cta-section {
    padding: 150px 40px;
    background: var(--white);
    text-align: center;
    width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
}

.cta-section .cta-title {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(50px, 8vw, 90px);
    line-height: 1.1;
    margin-bottom: 40px;
    color: var(--black);
}

.cta-section .cta-subtitle {
    font-size: 20px;
    color: var(--gray);
    margin-bottom: 50px;
}

.cta-section .cta-button {
    display: inline-block;
    padding: 25px 60px;
    background: var(--black);
    color: var(--white);
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border: 3px solid var(--black);
}

.cta-section .cta-button:hover {
    background: var(--accent);
    transform: translate(-4px, -4px);
}

@media (max-width: 1024px) {
    .values-grid,
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .story-section,
    .values-section,
    .stats-section,
    .cta-section {
        padding: 100px 20px;
    }

    .story-content {
        font-size: 18px;
    }

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

    .value-card {
        padding: 30px 20px;
    }

    .value-card:hover {
        transform: none;
    }

    .value-card .value-title {
        font-size: 22px;
    }

    .stat-item .stat-number {
        font-size: 50px;
    }

    .cta-section .cta-button {
        padding: 20px 40px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .cta-section .cta-button:hover {
        transform: none;
    }
}
