/* ========== PAGE OSTÉOPATHIE ========== */

/* ========== CONTENT SECTION ========== */
.content-section {
    padding: 4rem 2rem;
    background: white;
}

.content-container {
    max-width: 1200px;
    margin: 0 auto;
}

.content-container h2 {
    color: #2c5f6f;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    margin-top: 2rem;
}

.content-container h3 {
    color: #2c5f6f;
    font-size: 1.5rem;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
}

.content-container p {
    color: #555;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* ========== INFO GRID ========== */
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
    margin-bottom: 3rem;
}

.info-item {
    background: #f8fafb;
    padding: 2rem;
    border-radius: 15px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.info-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.info-item h4 {
    color: #2c5f6f;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.info-item p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
}

/* ========== MOTIFS LIST ========== */
.motifs-list {
    list-style: none;
    padding: 0;
    margin-top: 1.5rem;
}

.motifs-list li {
    background: #f8fafb;
    padding: 1.5rem;
    margin-bottom: 1rem;
    border-radius: 10px;
    border-left: 4px solid #5a8a96;
    transition: transform 0.3s, box-shadow 0.3s;
}

.motifs-list li:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.motifs-list strong {
    color: #2c5f6f;
}

/* ========== SESSION STEPS ========== */
.session-steps {
    display: grid;
    gap: 2rem;
    margin-top: 2rem;
}

.step {
    display: flex;
    gap: 2rem;
    background: #f8fafb;
    padding: 2rem;
    border-radius: 15px;
    align-items: flex-start;
    transition: transform 0.3s, box-shadow 0.3s;
}

.step:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.step-number {
    background: linear-gradient(135deg, #5a8a96, #7ba8b5);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step h4 {
    color: #2c5f6f;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.step p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

/* ========== RESPONSIVE BASE ========== */
@media (max-width: 1000px) {
    .content-section {
        padding: 3rem 1.5rem;
    }
    
    .content-container h2 {
        font-size: 1.7rem;
    }
    
    .content-container h3 {
        font-size: 1.3rem;
    }
    
    .content-container p {
        font-size: 1rem;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .step {
        gap: 1.5rem;
        padding: 1.5rem;
    }
    
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    nav {
        flex-wrap: wrap;
        padding: 1rem;
        justify-content: center;
    }

    .logo {
        width: 100%;
        text-align: center;
        margin-bottom: 1rem;
    }

    .nav-links {
        order: 2;
        width: 100%;
        justify-content: center;
        gap: 0.5rem;
        flex-wrap: wrap;
        margin-bottom: 1rem;
    }

    .nav-links button {
        padding: 8px 16px;
        font-size: 14px;
    }

    .btn-appointment {
        order: 3;
        width: auto;
    }

    .hero {
        padding-top: 10rem;
    }

    .hero h1 {
        font-size: 1.8rem;
        padding-top: 1rem;
    }
}

@media (max-width: 480px) {
    .content-section {
        padding: 2rem 1rem;
    }
    
    .content-container h2 {
        font-size: 1.5rem;
    }
    
    .content-container h3 {
        font-size: 1.2rem;
    }
    
    .content-container p {
        font-size: 0.95rem;
    }
    
    .info-item {
        padding: 1.5rem;
    }
    
    .info-item h4 {
        font-size: 1.1rem;
    }
    
    .motifs-list li {
        padding: 1rem;
    }
    
    .step {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
        text-align: center;
    }
    
    .step-number {
        margin: 0 auto;
    }
    
    .step h4 {
        font-size: 1.1rem;
    }
    
    .step p {
        font-size: 0.95rem;
    }
    
    .nav-links button {
        padding: 6px 12px;
        font-size: 12px;
    }

    .btn-appointment {
        padding: 0.6rem 1.2rem;
        font-size: 14px;
    }
}