        .conseils-container {
            max-width: 900px;
            margin: 40px auto 30px auto;
            background: #fff;
            border-radius: 18px;
            box-shadow: 0 4px 24px rgba(0,0,0,0.08);
            padding: 40px 30px 30px 30px;
        }
        .titre-principal {
            display: flex;
            align-items: center;
            font-size: 2.2rem;
            font-weight: 700;
            margin-bottom: 35px;
            color: #2577db;
            gap: 18px;
        }
        .icone-titre {
            width: 48px;
            height: 48px;
            margin-right: 10px;
        }
        main {
            margin-top: 10px;
        }
        .bloc-conseil {
            margin-bottom: 38px;
            padding: 28px 22px 22px 22px;
            border-radius: 12px;
            background: #f7f8fa;
            box-shadow: 0 2px 8px rgba(44,62,80,0.04);
        }
        .sous-titre {
            display: flex;
            align-items: center;
            font-size: 1.35rem;
            font-weight: 600;
            color: #1e61a8;
            margin-bottom: 18px;
            gap: 12px;
        }
        .icone-section {
            width: 32px;
            height: 32px;
            margin-right: 8px;
        }
        .liste-conseils {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .liste-conseils li {
            display: flex;
            align-items: flex-start;
            margin-bottom: 16px;
            gap: 10px;
        }
        .icone-liste {
            width: 28px;
            height: 28px;
            margin-top: 2px;
            flex-shrink: 0;
        }
        @media (max-width: 600px) {
            .conseils-container {
                padding: 18px 6px 18px 6px;
            }
            .titre-principal {
                font-size: 1.25rem;
            }
            .icone-titre {
                width: 32px;
                height: 32px;
            }
            .sous-titre {
                font-size: 1rem;
            }
            .icone-section {
                width: 22px;
                height: 22px;
            }
            .icone-liste {
                width: 18px;
                height: 18px;
            }
        }