/* ===== boutons association ===== */  

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

        .header {
            background: white;
            border-radius: 20px;
            padding: 20px 40px;
            margin-bottom: 30px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
            text-align: center;
        }

        h1 {
            color: #667eea;
            font-size: 2.8em;
            margin-bottom: 20px;
        }

        .tagline {
            font-size: 1.4em;
            color: #764ba2;
            font-style: italic;
            font-weight: 600;
        }

        .card {
            background: white;
            border-radius: 20px;
            padding: 40px;
            margin-bottom: 30px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
        }

        p {
            color: #333;
            font-size: 1.1em;
            margin-bottom: 20px;
            text-align: justify;
        }

        .highlight {
            background: linear-gradient(120deg, #667eea, #764ba2);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            font-weight: bold;
        }

        .timeline {
            background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
            padding: 30px;
            border-radius: 15px;
            margin: 30px 0;
            border-left: 5px solid #667eea;
        }

        .timeline h3 {
            color: #667eea;
            margin-bottom: 15px;
            font-size: 1.3em;
        }

        .timeline p {
            color: #555;
            margin-bottom: 10px;
        }
/* ===== cadre bleu ===== */ 
        .cta-section {
            background: linear-gradient(135deg, #667eea, #764ba2);
            color: white;
            text-align: center;
            padding: 20px 40px;
            border-radius: 20px;
            margin-top: 30px;
            box-shadow: 0 15px 50px rgba(102, 126, 234, 0.3);
        }

        .cta-section h2 {
            font-size: 2.2em;
            margin-bottom: 20px;
        }

        .cta-section p {
            color: white;
            font-size: 1.2em;
            margin-bottom: 30px;
            text-align: center;
        }

 

        .stats {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin: 30px 0;
        }

        .stat-box {
            background: linear-gradient(135deg, #667eea15, #764ba215);
            padding: 25px;
            border-radius: 15px;
            text-align: center;
            transition: transform 0.3s ease;
        }

        .stat-box:hover {
            transform: scale(1.05);
        }

        .stat-box .icon {
            font-size: 3em;
            margin-bottom: 10px;
        }

        .stat-box h3 {
            color: #667eea;
            font-size: 1.2em;
            margin-bottom: 5px;
        }

        .quote-box {
            background: #fff9e6;
            border-left: 5px solid #ffd700;
            padding: 25px;
            margin: 25px 0;
            border-radius: 10px;
            font-style: italic;
            color: #555;
            font-size: 1.15em;
        }

        @media (max-width: 768px) {
            .header, .card {
                padding: 30px 25px;
            }

            h1 {
                font-size: 2em;
            }

            .tagline {
                font-size: 1.1em;
            }

            p {
                font-size: 1em;
            }

            .stats {
                grid-template-columns: 1fr;
            }
        }
		
	/* ===== boutons status reglement charte Journal Of ===== */	
		
        .button-container {
            display: flex;
            gap: 20px;
            justify-content: center;
            align-items: center;
            flex-wrap: wrap;
            max-width: 1200px;
            width: 100%;
        }

        .btn {
            flex: 1;
            min-width: 200px;
            max-width: 280px;
            padding: 10px 20px;
            background: linear-gradient(135deg, #d4a574, #b8860b);
            color: white;
            text-decoration: none;
            font-size: 1.2em;
            font-weight: 600;
            border-radius: 15px;
            text-align: center;
            box-shadow: 0 8px 25px rgba(184, 134, 11, 0.3);
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
        }

        .btn:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 35px rgba(184, 134, 11, 0.4);
            background: linear-gradient(135deg, #b8860b, #d4a574);
        }	

        .btn:active {
            transform: translateY(-2px);
        }

        /* Tablettes */
        @media (max-width: 1024px) {
            .btn {
                min-width: 180px;
                font-size: 1.1em;
                padding: 18px 25px;
            }
        }

        /* Smartphones */
        @media (max-width: 768px) {
            .button-container {
                gap: 15px;
            }

            .btn {
                flex: 1 1 calc(50% - 10px);
                min-width: 140px;
                max-width: none;
                font-size: 1em;
                padding: 16px 20px;
            }
        }

        /* Petits smartphones */
        @media (max-width: 480px) {
            .btn {
                flex: 1 1 100%;
                min-width: unset;
            }
        }