/* Style moderne */
:root {
    --primary-color: #0071e3;
    --text-color: #1d1d1f;
    --secondary-text: #6e6e73;
    --background-light: #f5f5f7;
    --spacing-unit: 8px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    line-height: 1.47059;
    font-weight: 400;
    letter-spacing: -.022em;
    color: var(--text-color);
    background-color: #fff;
}

.section-content {
    max-width: 980px;
    margin: 0 auto;
    padding: 100px 20px;
}

section h2 {
    font-size: 48px;
    line-height: 1.08349;
    font-weight: 600;
    letter-spacing: -.003em;
    margin-bottom: 40px;
    text-align: center;
}