
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
        }
        
        /* Navigation */
        nav {
            background: linear-gradient(135deg, #970747 0%, #970747 100%);
            color: white;
            padding: 1rem 0;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        
        nav .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 1rem;
        }
        
        nav .logo {
            font-size: 1.5rem;
            font-weight: bold;
            white-space: nowrap;
            display: flex;
            align-items: center;
        }
        
        nav .logo img {
            height: 50px;
            width: auto;
            display: block;
        }
        
        nav .nav-content {
            display: flex;
            align-items: center;
            gap: 1.5rem;
            flex: 1;
            justify-content: flex-end;
        }
        
        nav ul {
            display: flex;
            list-style: none;
            gap: 1.5rem;
            flex-wrap: wrap;
        }
        
        nav ul li a {
            font-size: 0.95rem;
            white-space: nowrap;
        }
        
        .social-nav {
            display: flex;
            gap: 0.6rem;
            align-items: center;
            padding-left: 1.5rem;
            border-left: 1px solid rgba(255,255,255,0.3);
        }
        
        .social-nav a {
            width: 32px;
            height: 32px;
            background: rgba(255,255,255,0.15);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
            font-size: 0.9rem;
        }
        
        .social-nav a:hover {
            background: #C72B5A;
            transform: translateY(-2px);
        }
        
        nav a {
            color: white;
            text-decoration: none;
            transition: opacity 0.3s;
        }
        
        nav a:hover {
            opacity: 0.8;
        }
        
        .btn-don-nav {
            padding: 8px 20px;
            background: #970747;
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-weight: bold;
            transition: all 0.3s;
            white-space: nowrap;
            font-size: 0.9rem;
        }
        
        .btn-don-nav:hover {
            background: #C72B5A;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(151, 7, 71, 0.4);
        }
        
        /* Hero Section */
        .hero {
            color: white;
            padding: 150px 2rem 100px;
            text-align: center;
            margin-top: 60px;
            position: relative;
        }
        
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.1);
            z-index: 1;
        }
        
        .hero .container {
            position: relative;
            z-index: 2;
        }
        
        .hero h1 {
            font-size: 3rem;
            margin-bottom: 1rem;
            animation: fadeInUp 1s;
            text-shadow: 2px 2px 12px rgba(0, 0, 0, 0.7), 0 0 20px rgba(151, 7, 71, 0.5);
        }
        
        .hero p {
            font-size: 1.3rem;
            margin-bottom: 2rem;
            opacity: 0.95;
            text-shadow: 1px 1px 8px rgba(0, 0, 0, 0.7), 0 0 15px rgba(151, 7, 71, 0.4);
        }
        
        .btn {
            display: inline-block;
            padding: 15px 40px;
            background: #970747;
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-weight: bold;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.2);
        }
        
        /* Sections générales */
        section {
            padding: 80px 2rem;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
        }
        
        h2 {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 3rem;
            color: #970747;
        }
        
        /* Section À propos */
        .about {
            background: #f8f9fa;
        }
        
        /* Boutons de navigation rapide */
        .quick-nav-buttons {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1rem;
            margin-bottom: 2.5rem;
            animation: fadeInDown 0.8s ease-out;
        }
        
        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .quick-nav-btn {
            display: flex;
            align-items: center;
            gap: 1rem;
            background: white;
            padding: 1rem 1.5rem;
            border-radius: 12px;
            text-decoration: none;
            color: #333;
            box-shadow: 0 3px 15px rgba(0,0,0,0.08);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            overflow: hidden;
        }
        
        .quick-nav-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, #970747 0%, #970747 100%);
            opacity: 0;
            transition: opacity 0.4s;
            z-index: 0;
        }
        
        .quick-nav-btn:hover::before {
            opacity: 1;
        }
        
        .quick-nav-btn:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(13, 115, 119, 0.25);
            color: white;
        }
        
        .quick-nav-btn > * {
            position: relative;
            z-index: 1;
        }
        
        .btn-icon {
            font-size: 2rem;
            transition: transform 0.4s;
            flex-shrink: 0;
        }
        
        .quick-nav-btn:hover .btn-icon {
            transform: scale(1.15) rotate(5deg);
        }
        
        .btn-content {
            flex: 1;
        }
        
        .btn-content h4 {
            font-size: 1.1rem;
            margin-bottom: 0.2rem;
            font-weight: bold;
            transition: color 0.3s;
        }
        
        .btn-content p {
            font-size: 0.85rem;
            opacity: 0.8;
            margin: 0;
            transition: opacity 0.3s;
        }
        
        .quick-nav-btn:hover .btn-content p {
            opacity: 1;
        }
        
        .btn-arrow {
            font-size: 1.2rem;
            transition: transform 0.4s;
            flex-shrink: 0;
        }
        
        .quick-nav-btn:hover .btn-arrow {
            transform: translateX(5px);
        }
        
        /* Variantes de couleur pour chaque bouton */
        .articles-btn:hover {
            box-shadow: 0 10px 30px rgba(13, 115, 119, 0.3);
        }
        
        .documents-btn:hover {
            box-shadow: 0 10px 30px rgba(20, 160, 133, 0.3);
        }
        
        /* Animation d'entrée différée */
        .quick-nav-btn:nth-child(1) {
            animation: slideInLeft 0.6s ease-out;
        }
        
        .quick-nav-btn:nth-child(2) {
            animation: slideInRight 0.6s ease-out;
        }
        
        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }
        
        @keyframes slideInRight {
            from {
                opacity: 0;
                transform: translateX(50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }
        
        /* Responsive boutons navigation rapide */
        @media (max-width: 768px) {
            .quick-nav-buttons {
                grid-template-columns: 1fr;
                gap: 0.8rem;
                margin-bottom: 2rem;
            }
            
            .quick-nav-btn {
                padding: 0.9rem 1.2rem;
                gap: 0.8rem;
            }
            
            .btn-icon {
                font-size: 1.8rem;
            }
            
            .btn-content h4 {
                font-size: 1rem;
            }
            
            .btn-content p {
                font-size: 0.8rem;
            }
            
            .btn-arrow {
                font-size: 1rem;
            }
        }
        
        .about-hero {
            text-align: center;
            margin-bottom: 3rem;
            padding: 2rem;
            background: linear-gradient(135deg, rgba(151, 7, 71, 0.05), rgba(199, 43, 90, 0.05));
            border-radius: 15px;
        }
        
        .vision-symbol {
            font-size: 3rem;
            margin-bottom: 1rem;
            animation: pulse 2s infinite;
        }
        
        @keyframes pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.1); }
        }
        
        .about-hero-title {
            font-size: 1.5rem;
            color: #970747;
            font-style: italic;
        }
        
        .section-label {
            display: inline-block;
            background: #970747;
            color: white;
            padding: 0.5rem 1.5rem;
            border-radius: 25px;
            font-size: 0.85rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 1rem;
        }
        
        .highlight-box-inline {
            background: linear-gradient(135deg, rgba(151, 7, 71, 0.08), rgba(199, 43, 90, 0.08));
            padding: 1.5rem;
            border-radius: 10px;
            border-left: 4px solid #970747;
            margin: 2rem 0;
        }
        
        .date-badge-small {
            display: inline-block;
            background: #970747;
            color: white;
            padding: 0.4rem 1rem;
            border-radius: 20px;
            font-weight: bold;
            font-size: 0.9rem;
            margin-bottom: 0.8rem;
        }
        
        .vision-text {
            font-size: 1.2rem;
            color: #970747;
            font-weight: 600;
            font-style: italic;
            padding: 1rem;
            background: rgba(26, 84, 144, 0.05);
            border-radius: 8px;
            margin: 1rem 0;
        }
        
        .btn-lire-plus {
            display: inline-flex;
            align-items: center;
            gap: 0.8rem;
            padding: 1rem 2rem;
            background: linear-gradient(135deg, #970747, #970747);
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-weight: bold;
            margin-top: 2rem;
            transition: all 0.3s;
            box-shadow: 0 5px 15px rgba(26, 84, 144, 0.3);
        }
        
        .btn-lire-plus:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(26, 84, 144, 0.4);
        }
        
        .btn-lire-plus i {
            font-size: 1.1rem;
        }
        
        .engagements-box {
            background: #f8f9fa;
            padding: 1.5rem;
            border-radius: 10px;
            border-left: 4px solid #970747;
            margin-top: 1.5rem;
        }
        
        .engagements-list {
            list-style: none;
            padding: 0;
        }
        
        .engagements-list li {
            padding: 0.8rem 0;
            padding-left: 1.5rem;
            position: relative;
            line-height: 1.6;
            color: #555;
        }
        
        .engagements-list li:before {
            content: '✓';
            position: absolute;
            left: 0;
            color: #970747;
            font-weight: bold;
            font-size: 1.2rem;
        }
        
        .engagements-list li strong {
            color: #970747;
        }
        
        /* Card slider Vision - Colonne gauche */
        .vision-slider-card {
            margin-bottom: 2rem;
            background: white;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            overflow: hidden;
            animation: fadeInUp 0.8s ease-out;
        }
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .slider-wrapper {
            position: relative;
            width: 100%;
            height: 300px;
            overflow: hidden;
        }
        
        .slider-track {
            display: flex;
            height: 100%;
            transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }
        
        .slide {
            min-width: 100%;
            height: 100%;
            position: relative;
            display: flex;
            align-items: flex-end;
        }
        
        .slide img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }
        
        .slide.active img {
            transform: scale(1.05);
        }
        
        .slide-caption {
            position: relative;
            z-index: 2;
            background: linear-gradient(to top, 
                rgba(13, 115, 119, 0.95) 0%, 
                rgba(13, 115, 119, 0.85) 50%,
                rgba(13, 115, 119, 0) 100%);
            width: 100%;
            padding: 2rem 1.5rem 1.5rem;
            color: white;
        }
        
        .caption-icon {
            font-size: 2.5rem;
            margin-bottom: 0.8rem;
            animation: bounceIcon 2s ease-in-out infinite;
        }
        
        @keyframes bounceIcon {
            0%, 100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-8px);
            }
        }
        
        .slide-caption h4 {
            font-size: 1.3rem;
            margin-bottom: 0.5rem;
            font-weight: bold;
            text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
        }
        
        .slide-caption p {
            font-size: 0.9rem;
            line-height: 1.5;
            opacity: 0.95;
        }
        
        /* Boutons de navigation du slider */
        .slider-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255, 255, 255, 0.95);
            color: #970747;
            border: none;
            width: 35px;
            height: 35px;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1rem;
            transition: all 0.3s;
            z-index: 10;
            box-shadow: 0 3px 15px rgba(0,0,0,0.2);
        }
        
        .slider-btn:hover {
            background: white;
            color: #970747;
            transform: translateY(-50%) scale(1.1);
            box-shadow: 0 5px 20px rgba(13, 115, 119, 0.4);
        }
        
        .slider-btn:active {
            transform: translateY(-50%) scale(0.95);
        }
        
        .slider-btn.prev {
            left: 10px;
        }
        
        .slider-btn.next {
            right: 10px;
        }
        
        /* Indicateurs du slider */
        .slider-dots {
            position: absolute;
            bottom: 15px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 8px;
            z-index: 10;
        }
        
        .slider-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.5);
            border: 2px solid rgba(255, 255, 255, 0.8);
            cursor: pointer;
            transition: all 0.3s;
        }
        
        .slider-dot:hover {
            background: rgba(255, 255, 255, 0.8);
            transform: scale(1.2);
        }
        
        .slider-dot.active {
            background: white;
            width: 24px;
            border-radius: 4px;
            box-shadow: 0 2px 8px rgba(255, 255, 255, 0.5);
        }
        
        /* Responsive slider */
        @media (max-width: 768px) {
            .slider-wrapper {
                height: 280px;
            }
            
            .slide-caption {
                padding: 1.5rem 1rem 1rem;
            }
            
            .caption-icon {
                font-size: 2rem;
            }
            
            .slide-caption h4 {
                font-size: 1.1rem;
            }
            
            .slide-caption p {
                font-size: 0.85rem;
            }
            
            .slider-btn {
                width: 30px;
                height: 30px;
                font-size: 0.9rem;
            }
        }
        
        @media (max-width: 480px) {
            .slider-wrapper {
                height: 250px;
            }
            
            .slide-caption h4 {
                font-size: 1rem;
            }
            
            .slide-caption p {
                font-size: 0.8rem;
            }
        }
        
        .about-content {
            display: grid;
            grid-template-columns: 380px 1fr;
            gap: 4rem;
            align-items: start;
            margin-bottom: 3rem;
            position: relative;
        }
        
        .about-left-column {
            display: flex;
            flex-direction: column;
            gap: 2rem;
            margin-left: -2rem;
        }
        
        .about-right-column {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        
        .about-text h3 {
            color: #970747;
            margin-bottom: 1rem;
            font-size: 1.8rem;
        }
        
        .about-text p {
            margin-bottom: 1rem;
            font-size: 1.1rem;
            line-height: 1.8;
        }
        
        .stats {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 2rem;
        }
        
        .stat-box {
            background: white;
            padding: 2rem;
            border-radius: 10px;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        .stat-box .number {
            font-size: 3rem;
            color: #970747;
            font-weight: bold;
        }
        
        .stat-box .label {
            color: #666;
            margin-top: 0.5rem;
        }
        
        /* Section Articles - Mini Card */
        .articles-section {
            margin-top: 0;
        }
        
        .articles-mini-card {
            background: white;
            border-radius: 15px;
            padding: 1.5rem;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            max-width: 380px;
        }
        
        .articles-list {
            display: flex;
            flex-direction: column;
            gap: 0;
        }
        
        .article-item {
            padding: 1.2rem 0;
            border-bottom: 1px solid #e8e8e8;
            transition: all 0.2s;
        }
        
        .article-item:last-child {
            border-bottom: none;
        }
        
        .article-item:hover {
            background: #f8f9fa;
            margin: 0 -1.5rem;
            padding-left: 1.5rem;
            padding-right: 1.5rem;
        }
        
        .article-badge {
            display: inline-block;
            background: white;
            border: 2px solid #970747;
            color: #970747;
            padding: 4px 14px;
            border-radius: 20px;
            font-size: 0.7rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 0.6rem;
        }
        
        .article-date {
            float: right;
            font-size: 0.8rem;
            color: #666;
            font-weight: 500;
            margin-top: 5px;
        }
        
        .article-content p {
            color: #333;
            font-size: 0.9rem;
            line-height: 1.5;
            margin: 0;
        }
        
        .btn-voir-plus {
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 100%;
            padding: 0.8rem 0;
            margin-top: 0.5rem;
            color: #970747;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.9rem;
            transition: all 0.2s;
        }
        
        .btn-voir-plus:hover {
            color: #970747;
        }
        
        .btn-voir-plus i {
            transition: transform 0.3s;
        }
        
        .btn-voir-plus:hover i {
            transform: translateX(5px);
        }
        
        /* Domaines d'intervention */
        .domains {
            background: white;
        }
        
        .domains-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
        }
        
        @media (max-width: 992px) {
            .domains-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (max-width: 768px) {
            .domains-grid {
                grid-template-columns: 1fr;
            }
        }
        
        .domain-card {
            background: #f8f9fa;
            padding: 2rem;
            border-radius: 15px;
            text-align: center;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        
        .domain-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.15);
        }
        
        .domain-card .icon {
            font-size: 4rem;
            margin-bottom: 1rem;
        }
        
        .domain-card h3 {
            color: #970747;
            margin-bottom: 1rem;
        }
        
        .domain-card p {
            margin-bottom: 1rem;
            line-height: 1.6;
        }
        
        .action-list {
            list-style: none;
            text-align: left;
            margin-top: 1rem;
            padding: 0;
        }
        
        .action-list li {
            padding: 0.5rem 0;
            color: #555;
            font-size: 0.9rem;
            border-bottom: 1px solid rgba(0,0,0,0.05);
        }
        
        .action-list li:last-child {
            border-bottom: none;
        }
        
        .action-list li:before {
            content: '✓ ';
            color: #970747;
            font-weight: bold;
            margin-right: 0.5rem;
        }
        
        /* Projets */
        .projects {
            background: #f8f9fa;
        }
        
        .projects-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }
        
        .project-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s;
        }
        
        .project-card:hover {
            transform: translateY(-10px);
        }
        
        .project-img {
            width: 100%;
            height: 200px;
            overflow: hidden;
            position: relative;
        }
        
        .project-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s;
        }
        
        .project-card:hover .project-img img {
            transform: scale(1.1);
        }
        
        .project-content {
            padding: 2rem;
        }
        
        .project-content h3 {
            color: #970747;
            margin-bottom: 1rem;
        }
        
        /* Soutien */
        .support {
            background: linear-gradient(135deg, rgba(151, 7, 71, 0.92) 0%, rgba(199, 43, 90, 0.92) 100%),
                        url('https://images.unsplash.com/photo-1469571486292-0ba58a3f068b?w=1920&q=80') center/cover no-repeat fixed;
            color: white;
            text-align: center;
            position: relative;
        }
        
        .support::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.15);
            pointer-events: none;
        }
        
        .support .container {
            position: relative;
            z-index: 1;
        }
        
        /* Carrousel d'activités */
        .activities-carousel {
            margin-top: 4rem;
            overflow: hidden;
            position: relative;
        }
        
        .activities-carousel h3 {
            color: white;
            font-size: 1.8rem;
            margin-bottom: 2rem;
            text-align: center;
            animation: fadeInDown 0.8s ease-out;
            text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
        }
        
        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .activities-carousel h3::before {
            content: '✨ ';
            animation: sparkle 2s ease-in-out infinite;
        }
        
        .activities-carousel h3::after {
            content: ' ✨';
            animation: sparkle 2s ease-in-out infinite;
            animation-delay: 1s;
        }
        
        @keyframes sparkle {
            0%, 100% {
                opacity: 1;
                transform: scale(1);
            }
            50% {
                opacity: 0.5;
                transform: scale(1.2);
            }
        }
        
        .carousel-container {
            position: relative;
            padding: 0 50px;
        }
        
        .carousel-track {
            display: flex;
            gap: 1.5rem;
            overflow-x: auto;
            scroll-behavior: smooth;
            scrollbar-width: none;
            -ms-overflow-style: none;
            padding: 1rem 0;
        }
        
        .carousel-track::-webkit-scrollbar {
            display: none;
        }
        
        .activity-card {
            min-width: 280px;
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0,0,0,0.2);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            flex-shrink: 0;
            position: relative;
            cursor: pointer;
        }
        
        .activity-card:hover {
            transform: translateY(-15px) scale(1.02);
            box-shadow: 0 15px 40px rgba(0,0,0,0.3);
            z-index: 10;
        }
        
        .activity-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(151, 7, 71, 0.1), rgba(199, 43, 90, 0.1));
            opacity: 0;
            transition: opacity 0.4s;
            z-index: 1;
            pointer-events: none;
        }
        
        .activity-card:hover::before {
            opacity: 1;
        }
        
        .activity-image {
            width: 100%;
            height: 200px;
            object-fit: cover;
            transition: transform 0.6s ease;
            border-radius: 12px 12px 0 0;
        }
        
        .activity-card:hover .activity-image {
            transform: scale(1.15);
        }
        
        .activity-content {
            padding: 1.5rem;
            position: relative;
            z-index: 2;
            transition: all 0.4s;
        }
        
        .activity-card:hover .activity-content {
            background: rgba(255, 255, 255, 0.98);
        }
        
        .activity-content h4 {
            color: #970747;
            margin-bottom: 0.5rem;
            font-size: 1.1rem;
            transition: all 0.3s;
        }
        
        .activity-card:hover .activity-content h4 {
            color: #970747;
            transform: translateX(5px);
        }
        
        .activity-content p {
            color: #666;
            font-size: 0.9rem;
            line-height: 1.5;
            transition: color 0.3s;
        }
        
        .activity-card:hover .activity-content p {
            color: #333;
        }
        
        .activity-date {
            color: #970747;
            font-size: 0.85rem;
            font-weight: 600;
            margin-top: 0.5rem;
            transition: all 0.3s;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }
        
        .activity-date::before {
            content: '📅';
            font-size: 1rem;
        }
        
        .activity-card:hover .activity-date {
            transform: translateX(5px);
            color: #970747;
        }
        
        /* Animation d'entrée pour les cards */
        @keyframes slideInFromLeft {
            from {
                opacity: 0;
                transform: translateX(-50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }
        
        @keyframes slideInFromRight {
            from {
                opacity: 0;
                transform: translateX(50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .activity-card:nth-child(odd) {
            animation: slideInFromLeft 0.6s ease-out forwards;
        }
        
        .activity-card:nth-child(even) {
            animation: slideInFromRight 0.6s ease-out forwards;
        }
        
        /* Délais d'animation échelonnés */
        .activity-card:nth-child(1) { animation-delay: 0.1s; }
        .activity-card:nth-child(2) { animation-delay: 0.2s; }
        .activity-card:nth-child(3) { animation-delay: 0.3s; }
        .activity-card:nth-child(4) { animation-delay: 0.4s; }
        .activity-card:nth-child(5) { animation-delay: 0.5s; }
        .activity-card:nth-child(6) { animation-delay: 0.6s; }
        .activity-card:nth-child(7) { animation-delay: 0.7s; }
        .activity-card:nth-child(8) { animation-delay: 0.8s; }
        
        /* Badge "Nouveau" pour les activités récentes */
        .activity-badge {
            position: absolute;
            top: 10px;
            right: 10px;
            background: #970747;
            color: white;
            padding: 0.4rem 0.8rem;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: bold;
            z-index: 3;
            opacity: 0;
            transform: scale(0.8) rotate(-5deg);
            transition: all 0.4s;
        }
        
        .activity-card:hover .activity-badge {
            opacity: 1;
            transform: scale(1) rotate(0deg);
        }
        
        .carousel-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255,255,255,0.9);
            color: #970747;
            border: none;
            width: 45px;
            height: 45px;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
            transition: all 0.3s;
            z-index: 10;
            box-shadow: 0 3px 15px rgba(0,0,0,0.2);
            backdrop-filter: blur(5px);
        }
        
        .carousel-btn:hover {
            background: white;
            color: #970747;
            transform: translateY(-50%) scale(1.15);
            box-shadow: 0 5px 25px rgba(151, 7, 71, 0.4);
        }
        
        .carousel-btn:active {
            transform: translateY(-50%) scale(0.95);
        }
        
        .carousel-btn.prev {
            left: 0;
            animation: slideFromLeft 0.6s ease-out;
        }
        
        .carousel-btn.next {
            right: 0;
            animation: slideFromRight 0.6s ease-out;
        }
        
        @keyframes slideFromLeft {
            from {
                opacity: 0;
                transform: translateY(-50%) translateX(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(-50%) translateX(0);
            }
        }
        
        @keyframes slideFromRight {
            from {
                opacity: 0;
                transform: translateY(-50%) translateX(30px);
            }
            to {
                opacity: 1;
                transform: translateY(-50%) translateX(0);
            }
        }
        
        .carousel-btn i {
            transition: transform 0.3s;
        }
        
        .carousel-btn:hover i {
            animation: bounce 0.6s ease-in-out;
        }
        
        @keyframes bounce {
            0%, 100% { transform: translateX(0); }
            25% { transform: translateX(-5px); }
            75% { transform: translateX(5px); }
        }
        
        .carousel-btn.prev:hover i {
            animation: bounceLeft 0.6s ease-in-out;
        }
        
        .carousel-btn.next:hover i {
            animation: bounceRight 0.6s ease-in-out;
        }
        
        @keyframes bounceLeft {
            0%, 100% { transform: translateX(0); }
            50% { transform: translateX(-8px); }
        }
        
        @keyframes bounceRight {
            0%, 100% { transform: translateX(0); }
            50% { transform: translateX(8px); }
        }
        
        .carousel-indicators {
            display: flex;
            justify-content: center;
            gap: 0.8rem;
            margin-top: 2rem;
            animation: fadeInUp 0.8s ease-out 0.3s both;
        }
        
        .indicator {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255,255,255,0.5);
            border: 2px solid rgba(255,255,255,0.8);
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
        }
        
        .indicator:hover {
            background: rgba(255,255,255,0.8);
            transform: scale(1.2);
        }
        
        .indicator.active {
            background: white;
            width: 35px;
            border-radius: 6px;
            box-shadow: 0 3px 10px rgba(255,255,255,0.5);
        }
        
        .indicator.active::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 100%;
            height: 100%;
            border-radius: inherit;
            border: 2px solid white;
            animation: ping 1.5s cubic-bezier(0, 0, 0.2, 1) infinite;
        }
        
        @keyframes ping {
            0% {
                transform: translate(-50%, -50%) scale(1);
                opacity: 1;
            }
            75%, 100% {
                transform: translate(-50%, -50%) scale(1.5);
                opacity: 0;
            }
        }
        
        
        /* Section Partenaires */
        .partners {
            background: white;
            padding: 80px 2rem;
        }
        
        .partners h2 {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 1rem;
            color: #970747;
        }
        
        .partners-intro {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 3rem;
            color: #666;
            font-size: 1.1rem;
        }
        
        .partners-categories {
            display: flex;
            flex-direction: column;
            gap: 4rem;
        }
        
        .partner-category h3 {
            color: #970747;
            font-size: 1.8rem;
            margin-bottom: 2rem;
            text-align: center;
            position: relative;
            padding-bottom: 1rem;
        }
        
        .partner-category h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 3px;
            background: #970747;
        }
        
        .partners-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            align-items: center;
        }
        
        .partner-card {
            background: white;
            padding: 2.5rem 2rem;
            border-radius: 15px;
            text-align: center;
            transition: all 0.3s;
            border: 1px solid #e0e0e0;
            min-height: 260px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: space-between;
            box-shadow: 0 2px 10px rgba(0,0,0,0.08);
        }
        
        .partner-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 30px rgba(151, 7, 71, 0.15);
            border-color: #970747;
        }
        
        .partner-logo {
            width: 160px;
            height: 100px;
            object-fit: contain;
            margin-bottom: 1.5rem;
            filter: grayscale(0%);
            transition: all 0.3s;
            background: transparent;
            padding: 0;
        }
        
        .partner-card:hover .partner-logo {
            transform: scale(1.05);
        }
        
        .partner-card .placeholder-logo {
            width: 120px;
            height: 80px;
            background: linear-gradient(135deg, #970747, #970747);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }
        
        .partner-card h4 {
            color: #333;
            margin-bottom: 0.5rem;
            font-size: 1.2rem;
            font-weight: 700;
            line-height: 1.3;
        }
        
        .partner-card p {
            color: #666;
            font-size: 0.95rem;
            line-height: 1.5;
            margin-top: auto;
        }
        
        .become-partner {
            background: #e8f5e9;
            padding: 3rem;
            border-radius: 20px;
            text-align: center;
            margin-top: 4rem;
            border: 2px dashed #970747;
        }
        
        .become-partner h3 {
            color: #970747;
            font-size: 1.8rem;
            margin-bottom: 1rem;
        }
        
        .become-partner p {
            color: #666;
            font-size: 1.1rem;
            margin-bottom: 2rem;
        }
        
        .become-partner .btn {
            display: inline-block;
            padding: 15px 40px;
            background: #970747;
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-weight: bold;
            transition: all 0.3s;
        }
        
        .become-partner .btn:hover {
            background: #970747;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(26, 84, 144, 0.3);
        }
        
        
        .support h2 {
            color: white;
            text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
        }
        
        .support > p {
            text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
        }
        
        .support-options {
            display: grid;
            grid-template-columns: 180px repeat(3, 1fr);
            gap: 2rem;
            margin-top: 3rem;
        }
        
        .support-card {
            background: rgba(255,255,255,0.1);
            padding: 2rem;
            border-radius: 15px;
            backdrop-filter: blur(10px);
            transition: background 0.3s;
        }
        
        .support-card:hover {
            background: rgba(255,255,255,0.2);
        }
        
        .support-card .icon {
            font-size: 3rem;
            margin-bottom: 1rem;
        }
        
        /* Mini carte de soutien */
        .support-card.mini-card {
            padding: 1.2rem;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            min-height: 200px;
        }
        
        .support-card.mini-card .icon {
            font-size: 2rem;
            margin-bottom: 0.5rem;
        }
        
        .support-card.mini-card h3 {
            font-size: 1rem;
            margin-bottom: 0.5rem;
        }
        
        .support-card.mini-card p {
            font-size: 0.85rem;
        }
        
        /* Contact */
        .contact {
            background: white;
        }
        
        .contact-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
        }
        
        .contact-info {
            background: #f8f9fa;
            padding: 2rem;
            border-radius: 15px;
        }
        
        .contact-item {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1.5rem;
        }
        
        .contact-item .icon {
            font-size: 2rem;
            color: #970747;
        }
        
        .contact-form input,
        .contact-form textarea {
            width: 100%;
            padding: 1rem;
            margin-bottom: 1rem;
            border: 2px solid #e0e0e0;
            border-radius: 10px;
            font-family: inherit;
            font-size: 1rem;
        }
        
        .contact-form textarea {
            min-height: 150px;
            resize: vertical;
        }
        
        .contact-form button {
            width: 100%;
            padding: 15px;
            background: #970747;
            color: white;
            border: none;
            border-radius: 10px;
            font-size: 1.1rem;
            font-weight: bold;
            cursor: pointer;
            transition: background 0.3s;
        }
        
        .contact-form button:hover {
            background: #970747;
        }
        
        /* Footer */
        footer {
            background: #FFFFFF;
            color: #333;
            padding: 3rem 2rem 1rem;
        }
        
        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
            margin-bottom: 2rem;
        }
        
        .footer-section h3 {
            margin-bottom: 1rem;
            color: #970747;
        }
        
        .footer-section ul {
            list-style: none;
        }
        
        .footer-section ul li {
            margin-bottom: 0.5rem;
        }
        
        .footer-section a {
            color: #666;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-section a:hover {
            color: #970747;
        }
        
        .social-links {
            display: flex;
            gap: 1rem;
            margin-top: 1rem;
            flex-wrap: wrap;
        }
        
        .social-links a {
            width: 45px;
            height: 45px;
            background: #970747;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
            font-size: 1.3rem;
        }
        
        .social-links a:hover {
            background: #C72B5A;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(151, 7, 71, 0.4);
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid #ddd;
            color: #666;
        }
        
        /* Message formulaire */
        .form-success {
            background: #d4edda;
            color: #155724;
            border: 1px solid #c3e6cb;
        }
        
        .form-error {
            background: #f8d7da;
            color: #721c24;
            border: 1px solid #f5c6cb;
        }
        
        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        /* Responsive */
        @media (max-width: 1200px) {
            nav .container {
                max-width: 100%;
            }
            
            nav .logo img {
                height: 36px;
            }
            
            nav ul {
                gap: 1rem;
            }
            
            nav ul li a {
                font-size: 0.85rem;
            }
            
            .social-nav {
                gap: 0.5rem;
                padding-left: 1rem;
            }
            
            .social-nav a {
                width: 30px;
                height: 30px;
                font-size: 0.85rem;
            }
        }
        
        @media (max-width: 968px) {
            nav .logo img {
                height: 35px;
            }
            
            nav .nav-content {
                flex-direction: column;
                gap: 1rem;
                width: 100%;
            }
            
            nav ul {
                justify-content: center;
                width: 100%;
            }
            
            .social-nav {
                border-left: none;
                border-top: 1px solid rgba(255,255,255,0.3);
                padding-left: 0;
                padding-top: 1rem;
            }
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            nav .nav-content {
                flex-direction: column;
                gap: 1rem;
            }
            
            nav ul {
                flex-direction: column;
                gap: 1rem;
            }
            
            .hero h1 {
                font-size: 2rem;
            }
            
            .about-content {
                grid-template-columns: 1fr;
            }
            
            .about-left-column {
                margin-left: 0;
            }
            
            .contact-content {
                grid-template-columns: 1fr;
            }
            
            .stats {
                grid-template-columns: 1fr;
            }
            
            .support-options {
                grid-template-columns: 1fr;
            }
            
            .articles-section {
                margin-top: 2rem;
            }
            
            .articles-mini-card {
                max-width: 100%;
            }
            
            .partners-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .carousel-container {
                padding: 0 30px;
            }
            
            .carousel-btn {
                width: 35px;
                height: 35px;
                font-size: 1rem;
            }
        }
        
        @media (max-width: 480px) {
            .partners-grid {
                grid-template-columns: 1fr;
            }
            
            .activity-card {
                min-width: 250px;
            }
            
            .carousel-container {
                padding: 0 20px;
            }
            
            .carousel-btn {
                width: 30px;
                height: 30px;
                font-size: 0.9rem;
            }
        }

          .btn-don-nav {
            padding: 8px 20px;
            background: #970747;
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-weight: bold;
            transition: all 0.3s;
            white-space: nowrap;
            font-size: 0.9rem;
        }
        
        .btn-don-nav:hover {
            background: #C72B5A;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(151, 7, 71, 0.4);
        }

        /* Hero Section Don */
        .hero-don {
            background: linear-gradient(135deg, rgba(151, 7, 71, 0.3) 0%, rgba(199, 43, 90, 0.3) 100%),
                        url('photo_mission.jpg') center 40%/cover no-repeat;
            color: white;
            padding: 150px 2rem 80px;
            text-align: center;
            margin-top: 60px;
        }
        
        .hero-don h1 {
            font-size: 2.8rem;
            margin-bottom: 1rem;
            text-shadow: 3px 3px 12px rgba(0, 0, 0, 0.8), 0px 0px 20px rgba(0, 0, 0, 0.6);
        }
        
        .hero-don p {
            font-size: 1.3rem;
            max-width: 700px;
            margin: 0 auto;
            text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8), 0px 0px 15px rgba(0, 0, 0, 0.6);
        }

        /* Section Don */
        .donation-section {
            padding: 80px 2rem;
            background: #f8f9fa;
        }
        
        .container {
            max-width: 1000px;
            margin: 0 auto;
        }

        /* Impact Cards */
        .impact-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 4rem;
        }

        .impact-card {
            background: white;
            padding: 2rem;
            border-radius: 15px;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s;
            overflow: hidden;
        }

        .impact-card:hover {
            transform: translateY(-5px);
        }

        .impact-card .icon {
            width: 100%;
            height: 150px;
            margin-bottom: 1rem;
            border-radius: 10px;
            overflow: hidden;
            background: #f0f0f0;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .impact-card .icon img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s;
        }

        .impact-card:hover .icon img {
            transform: scale(1.1);
        }

        .impact-card h3 {
            color: #970747;
            margin-bottom: 0.5rem;
            font-size: 1.5rem;
        }

        .impact-card p {
            color: #666;
            font-size: 0.95rem;
        }

        /* Formulaire de Don */
        .donation-form {
            background: white;
            padding: 3rem;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        .form-header {
            text-align: center;
            margin-bottom: 3rem;
        }

        .form-header h2 {
            color: #970747;
            font-size: 2rem;
            margin-bottom: 0.5rem;
        }

        .form-header p {
            color: #666;
        }

        /* Montant de Don */
        .amount-section {
            margin-bottom: 2rem;
        }

        .amount-section h3 {
            color: #970747;
            margin-bottom: 1rem;
            font-size: 1.3rem;
        }

        .amount-options {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
            gap: 1rem;
            margin-bottom: 1.5rem;
        }

        .amount-option {
            position: relative;
        }

        .amount-option input[type="radio"] {
            position: absolute;
            opacity: 0;
        }

        .amount-option label {
            display: block;
            padding: 1.2rem;
            background: #f8f9fa;
            border: 2px solid #e0e0e0;
            border-radius: 12px;
            text-align: center;
            font-weight: bold;
            font-size: 1.2rem;
            cursor: pointer;
            transition: all 0.3s;
        }

        .amount-option input[type="radio"]:checked + label {
            background: #970747;
            color: white;
            border-color: #970747;
            transform: scale(1.05);
        }

        .amount-option label:hover {
            border-color: #970747;
        }

        .custom-amount {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .custom-amount input {
            flex: 1;
            padding: 1rem;
            border: 2px solid #e0e0e0;
            border-radius: 12px;
            font-size: 1.1rem;
            font-weight: bold;
        }

        .custom-amount input:focus {
            outline: none;
            border-color: #970747;
        }

        /* Type de Don */
        .frequency-section {
            margin-bottom: 2rem;
        }

        .frequency-options {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1rem;
        }

        .frequency-option {
            position: relative;
        }

        .frequency-option input[type="radio"] {
            position: absolute;
            opacity: 0;
        }

        .frequency-option label {
            display: block;
            padding: 1.2rem;
            background: #f8f9fa;
            border: 2px solid #e0e0e0;
            border-radius: 12px;
            text-align: center;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
        }

        .frequency-option input[type="radio"]:checked + label {
            background: #970747;
            color: white;
            border-color: #970747;
        }

        .frequency-option label:hover {
            border-color: #970747;
        }

        /* Informations Donateur */
        .donor-info {
            margin-bottom: 2rem;
        }

        .donor-info h3 {
            color: #970747;
            margin-bottom: 1.5rem;
            font-size: 1.3rem;
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
        }

        label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
            color: #333;
        }

        .required {
            color: #dc3545;
        }

        input[type="text"],
        input[type="email"],
        input[type="tel"],
        select,
        textarea {
            width: 100%;
            padding: 1rem;
            border: 2px solid #e0e0e0;
            border-radius: 10px;
            font-family: inherit;
            font-size: 1rem;
            transition: border-color 0.3s;
        }

        input:focus,
        select:focus,
        textarea:focus {
            outline: none;
            border-color: #970747;
        }

        /* Méthode de Paiement */
        .payment-section {
            margin-bottom: 2rem;
        }

        .payment-section h3 {
            color: #970747;
            margin-bottom: 1.5rem;
            font-size: 1.3rem;
        }

        .payment-methods {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 1rem;
            margin-bottom: 2rem;
        }

        .payment-method {
            position: relative;
        }

        .payment-method input[type="radio"] {
            position: absolute;
            opacity: 0;
        }

        .payment-method label {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.5rem;
            padding: 1.5rem 1rem;
            background: #f8f9fa;
            border: 2px solid #e0e0e0;
            border-radius: 12px;
            cursor: pointer;
            transition: all 0.3s;
        }

        .payment-method label i {
            font-size: 2rem;
            color: #970747;
        }

        .payment-method input[type="radio"]:checked + label {
            background: #e8f5e9;
            border-color: #970747;
        }

        .payment-method label:hover {
            border-color: #970747;
        }

        /* Message */
        .message-section textarea {
            min-height: 100px;
            resize: vertical;
        }

        /* Checkbox Anonyme */
        .checkbox-group {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            margin-bottom: 2rem;
        }

        .checkbox-group input[type="checkbox"] {
            width: auto;
            cursor: pointer;
        }

        .checkbox-group label {
            margin: 0;
            font-weight: normal;
            cursor: pointer;
        }

        /* Résumé du Don */
        .donation-summary {
            background: #e8f5e9;
            padding: 2rem;
            border-radius: 15px;
            margin-bottom: 2rem;
            border: 2px solid #970747;
        }

        .donation-summary h3 {
            color: #970747;
            margin-bottom: 1rem;
            text-align: center;
        }

        .summary-item {
            display: flex;
            justify-content: space-between;
            padding: 0.8rem 0;
            border-bottom: 1px solid #c8e6c9;
        }

        .summary-item:last-child {
            border-bottom: none;
            font-weight: bold;
            font-size: 1.2rem;
            color: #970747;
        }

        