.notre-histoire-page {
    min-height: calc(100vh - 200px);
    padding: 0 0 5rem;
    background: #F6E2F6;
}

.page-header {
    background: linear-gradient(135deg, #F6E2F6 0%, #ebcbdb 100%);
    text-align: center;
    padding: 5rem 6% 4rem;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: -60px; right: -60px;
    width: 280px; height: 280px;
    background: radial-gradient(circle, rgba(255,255,255,0.4) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.page-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.4rem, 7vw, 4rem);
    font-weight: 700;
    color: #E46CC5;
    margin-bottom: 0.6rem;
    letter-spacing: -0.5px;
    position: relative;
    z-index: 1;
}

.page-subtitle {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.15rem;
    color: #8a4060;
    font-weight: 500;
    position: relative;
    z-index: 1;
}

.page-header-divider {
    width: 80px;
    height: 5px;
    background: linear-gradient(to right, var(--pink-soft), var(--gold-warm));
    border-radius: 3px;
    margin: 1.2rem auto 0;
    position: relative;
    z-index: 1;
}

.header-wave {
    display: block;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    margin: -1px 0;
}
.header-wave svg {
    width: 100%;
    height: 60px;
}

/* === Contenu de l'histoire === */
.content-section {
    max-width: 900px;
    margin: 3rem auto;
    padding: 0 5%;
}

.history-card {
    background: white;
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 8px 30px rgba(194,24,91,0.06);
    border: 1px solid rgba(240,98,146,0.1);
}

.history-text {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.2rem;
    line-height: 1.8;
    color: #555;
}

.history-text p {
    margin-bottom: 1.5rem;
}

.highlight-pink {
    color: #E46CC5;
    font-weight: 700;
}

.quote-history {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #E46CC5;
    text-align: center;
    margin: 2.5rem 0;
    font-style: italic;
    position: relative;
}

.quote-history::before {
    content: '"';
    font-size: 4rem;
    position: absolute;
    top: -20px;
    left: 40%;
    opacity: 0.1;
    aria-hidden: true;
}

.badge-trek {
    display: inline-block;
    background: linear-gradient(135deg, var(--pink-soft), var(--pink-deep));
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-top: 1rem;
    box-shadow: 0 4px 15px rgba(194,24,91,0.2);
}

@media (max-width: 768px) {
    .history-card { padding: 1.5rem; }
    .quote-history { font-size: 1.4rem; }
}