 :root {
            --theme-color: #DF5311;
            --font-heading: 'DM Serif Display', serif;
            --font-body: 'Inter', sans-serif;
            --text-dark: #2d2622;
            --text-light: #7a726d;
            --bg-color: #fffdfa;
            --border-color: #e5ddd5;
        }

        body {
            font-family: var(--font-body);
            background-color: var(--bg-color);
            color: var(--text-dark);
            margin: 0;
            overflow-x: hidden;
        }
        
        .editorial-canvas {
            display: grid;
            grid-template-columns: repeat(12, 1fr);
            grid-auto-rows: min-content;
            max-width: 1400px;
            margin: 100px auto;
            padding: 0 40px;
            align-items: center;
            position: relative;
        }

        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .hero-heading, .hero-description, .causes-nav, .donate-button-container, .hero-image-container {
            opacity: 0;
            animation: fadeInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
        }
        .hero-description { animation-delay: 0.2s; }
        .hero-image-container { animation-delay: 0.3s; }
        .causes-nav { animation-delay: 0.5s; }
        .donate-button-container { animation-delay: 0.6s; }

        .hero-heading {
            grid-column: 1 / 8;
            grid-row: 1;
            font-family: var(--font-heading);
            font-size: 5rem;
            line-height: 1.1;
            margin: 0;
            z-index: 2;
        }
        .hero-heading span {
            color: var(--theme-color);
        }

        .hero-image-container {
            grid-column: 7 / 13;
            grid-row: 1 / 4;
            position: relative;
            z-index: 1;
            border-radius: 12px;
            overflow: hidden;
            height: 550px;
            box-shadow: 0 20px 50px rgba(0,0,0,0.1);
        }
        
        .hero-image-stack {
            position: relative;
            width: 100%;
            height: 100%;
        }
        .hero-image-stack img {
            position: absolute;
            top: 0; left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0;
            transition: opacity 0.6s ease-in-out;
        }
        .hero-image-stack img.active {
            opacity: 1;
        }
        .hero-image-stack::after {
            content: '';
            position: absolute;
            top: 0; left: 0;
            width: 100%; height: 100%;
            background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAMAAAAp4XiDAAAAUVBMVEWFhYWDg4N3d3dtbW17e3t1dXWBgYGHh4d5eXlzc3OLi4ubm5uVlZWYmJitbW1xcXFitbWxsbGjo6MPEhP8/PyBgYGZmZl8fHyUlJQtLi5jd3dVIRENAAAA<seg_22>URBVHgB7MZNTwAhEMTAQJCdl2U9yv//cSkImBIC0JFSfGf93IgIeE/5I44vK6vK8vL6/f5/v+4/Lw9b3i49bC/sL5xz+x/9+DPg14s93i28/L/2/S/9f8X/x/I/4f4H+H+C/x/wP4n+F/h/4f4P+H+C/x/wP4n+F/h/4f4P+H+C/x/wP4n+F/h/4f4P+H+C/x/wP4n+F/h/4f4P+H+C/x/wP4n+F/h/4f4P+H+C/x/wP4n+F/h/4f4P+H+C/x/wP4n+F/x+wA3wzI2QAAAABJRU5ErkJggg==');
            opacity: 0.07;
            pointer-events: none;
        }
        
        .hero-description {
            grid-column: 1 / 6;
            grid-row: 2;
            font-size: 1.1rem;
            line-height: 1.8;
            color: var(--text-light);
            max-width: 450px;
            margin-top: 40px;
            z-index: 2;
        }
        
        /* --- ALIGNMENT FIX 1: Aligning the nav block with the description above --- */
        .causes-nav {
            grid-column: 1 / 7; /* Changed from 1 / -1 to align left */
            grid-row: 3;
            margin-top: 50px;
            z-index: 2;
        }
        
        /* --- ALIGNMENT FIX 2: Removing the centering styles from the inner container --- */
        .causes-list-container {
            /* max-width and margin: auto have been removed */
        }
        
        .cause-link {
            display: flex;
            align-items: baseline;
            gap: 20px;
            padding: 20px;
            text-decoration: none;
            color: var(--text-dark);
            position: relative;
            border-bottom: 1px solid var(--border-color);
            border-radius: 8px;
        }
        .cause-link:first-child {
            border-top: 1px solid var(--border-color);
        }
        .cause-link::after {
            content: '';
            position: absolute;
            bottom: -1px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--theme-color);
            transition: width 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }
        .cause-link:hover::after {
            width: 100%;
        }

        .cause-number {
            font-size: 1rem;
            font-weight: 600;
            color: var(--text-light);
            flex-shrink: 0;
            width: 2.5em;
        }

        .cause-details h3 {
            font-size: 1.5rem;
            font-weight: 700;
            margin: 0 0 5px 0;
        }
        .cause-details p {
            font-size: 0.9rem;
            color: var(--text-light);
            margin: 0;
        }

        /* --- ALIGNMENT FIX 3: Aligning the button with the column above --- */
        .donate-button-container {
            grid-column: 1 / 7; /* Changed from 1 / -1 */
            grid-row: 4;
            z-index: 2;
            text-align: left; /* Changed from center */
            margin-top: 40px;
            padding-left: 20px; /* Align with inner text of the links */
        }

        .donate-button {
            display: inline-block;
            background-color: var(--theme-color);
            color: white;
            font-size: 1.1rem;
            font-weight: 600;
            padding: 18px 36px;
            border-radius: 8px;
            text-decoration: none;
            transition: transform 0.2s ease, box-shadow 0.2s ease;
        }
        .donate-button:hover {
            transform: translateY(-4px);
            box-shadow: 0 10px 20px rgba(223, 83, 17, 0.25);
        }
        
        @media (max-width: 1200px) {
            .hero-heading { grid-column: 1 / 9; font-size: 4rem;}
            .hero-image-container { grid-column: 6 / 13; }
        }
        @media (max-width: 992px) {
            .editorial-canvas { grid-template-columns: 1fr; margin: 40px auto; gap: 0; }
            .hero-heading, .hero-image-container, .hero-description, .causes-nav, .donate-button-container { grid-column: 1 / -1; grid-row: auto; }
            .hero-heading { font-size: 3rem; margin-bottom: 30px; }
            .hero-image-container { height: 400px; margin-bottom: 40px; }
            .hero-description { margin-top: 0; margin-bottom: 40px;}
            .causes-nav { margin-top: 0; margin-bottom: 0;}
            .donate-button-container { text-align: center; padding-left: 0; } /* Center button on mobile */
        }