 /* Section Mot du DG */
        .dg-section {
            padding: 5rem 2rem;
            /*background: linear-gradient(135deg, #f8fafc 0%, #e9ecef 100%);*/
            position: relative;
        }

        .dg-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 2fr;
            gap: 3rem;
            align-items: start;
        }

        .dg-image-container {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
            height: fit-content;
        }

        .dg-image {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.5s ease;
        }

        .dg-image-container:hover .dg-image {
            transform: scale(1.03);
        }

        .dg-image-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
            padding: 2rem;
            color: white;
        }

        .dg-name {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            color: #ffffff;
        }

        .dg-title {
            font-size: 1rem;
            opacity: 0.9;
        }

        .dg-title p {
            color: #1d7500;
        }

        .dg-content {
            background: white;
            border-radius: 20px;
            padding: 3rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            position: relative;
        }

        .dg-content:before {
            content: """;
            position: absolute;
            top: 20px;
            left: 20px;
            font-size: 6rem;
            color: #e63946;
            opacity: 0.1;
            font-family: Georgia, serif;
        }

        .section-title {
            font-size: 2.5rem;
            font-weight: 800;
            color: #1a202c;
            margin-bottom: 2rem;
            position: relative;
            display: inline-block;
        }

        .section-title:after {
            content: '';
            position: absolute;
            bottom: -20px;
            left: 0;
            width: 60px;
            height: 4px;
            background: #e63946;
            border-radius: 2px;
        }

        .dg-message {
            font-size: 1.1rem;
            line-height: 1.8;
            color: #4a5568;
            position: relative;
            z-index: 1;
            max-height: 600px;
            overflow-y: auto;
            padding-right: 15px;
        }

        .dg-message p {
            margin-bottom: 1.5rem;
        }

        .dg-message ul {
            margin-left: 2rem;
            margin-bottom: 1.5rem;
        }

        .dg-message li {
            margin-bottom: 0.5rem;
            position: relative;
        }

        .dg-message li:before {
            content: "•";
            color: #e63946;
            font-weight: bold;
            display: inline-block;
            width: 1em;
            margin-left: -1em;
        }

        .dg-signature {
            display: flex;
            justify-content: flex-end;
            margin-top: 2rem;
            border-top: 1px solid #eee;
            padding-top: 1.5rem;
        }

        .signature-container {
            text-align: right;
        }

        .signature-image {
            height: 80px;
            margin-bottom: 0.5rem;
        }

        .signature-name {
            font-weight: 700;
            color: #2d3748;
        }

        .signature-title {
            font-size: 0.9rem;
            color: #718096;
        }

        /* Scrollbar personnalisée */
        .dg-message::-webkit-scrollbar {
            width: 6px;
        }

        .dg-message::-webkit-scrollbar-track {
            background: #f1f1f1;
            border-radius: 10px;
        }

        .dg-message::-webkit-scrollbar-thumb {
            background: #e63946;
            border-radius: 10px;
        }

        .dg-message::-webkit-scrollbar-thumb:hover {
            background: #d32f2f;
        }

        /* Responsive */
        @media (max-width: 992px) {
            .dg-container {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            
            .dg-image-container {
                max-width: 450px;
                margin: 0 auto;
            }
        }

        @media (max-width: 768px) {
            .dg-section {
                padding: 3rem 1.5rem;
            }
            
            .dg-content {
                padding: 2rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .dg-message {
                font-size: 1rem;
            }
        }

        /* Animation */
        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .dg-content, .dg-image-container {
            animation: fadeIn 1s ease-out forwards;
        }

        .dg-content {
            animation-delay: 0.3s;
        }

        .dg-image-container {
            animation-delay: 0.6s;
        }
