:root {
        --color-primary: #3D1B85;
        --color-accent: #EC4872;
        --color-pink: #F17695;
        --color-text: #000000;
        --color-text-gray: #331F20;
        --color-white: #FFFFFF;
        --color-hover: #00A1E4;
        --color-active-nav: #393996;
        --color-border-gray: #BEBEBE;
        --color-bg-purple-light: rgba(61, 27, 133, 0.05);
        --color-border-red: #FF0000;
        --font-family: 'Ubuntu', sans-serif;
        --max-width: 1140px;
        --header-max-width: 1600px;
    }

    * { box-sizing: border-box; margin: 0; padding: 0; }

    body {
        font-family: var(--font-family);
        font-weight: 300;
        color: var(--color-text);
        line-height: 1.6;
        background-color: var(--color-white);
        -webkit-font-smoothing: antialiased;
    }

    h1, h2, h3, h4 { line-height: 1.2; font-weight: 700; }
    a { text-decoration: none; color: inherit; transition: color 0.3s ease; }
    img { max-width: 100%; height: auto; display: block; }
    ul { list-style: none; }

    .container {
        max-width: var(--max-width);
        margin: 0 auto;
        padding: 0 15px;
        width: 100%;
    }

    /* Header */
    .site-header {
        background: #fff;
        padding: 15px 0;
        position: relative;
        z-index: 100;
        border-bottom: 1px solid #eee;
    }

    .header-wrapper {
        display: flex;
        justify-content: space-between;
        align-items: center;
        max-width: var(--header-max-width);
        margin: 0 auto;
        padding: 0 15px;
    }

    .logo img { width: 185px; }

    .main-nav ul {
        display: flex;
        gap: 0;
        align-items: center;
    }

    .main-nav a {
        font-size: 17px;
        color: var(--color-text-gray);
        font-weight: 400;
        text-transform: lowercase;
        padding: 10px;
        margin: 0 5px;
    }

    .main-nav a:hover { color: var(--color-hover); }
    .main-nav a.active { color: var(--color-active-nav); }

    .menu-toggle {
        display: none;
        font-size: 24px;
        cursor: pointer;
        color: var(--color-text-gray);
        padding: 10px;
        background: none;
        border: none;
    }

    /* Hero */
    .hero {
        background-image: url('https://wowuniversity.org/storage/2023/08/Remimas_2-1536x595.webp');
        background-size: cover;
        background-position: center;
        min-height: 400px;
        position: relative;
        display: flex;
        align-items: flex-end;
        padding-bottom: 31px;
    }

    .hero::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg, rgba(241, 118, 149, 0) 26%, rgba(241, 118, 149, 0.78) 69%);
    }

    /* Intro Section */
    .section-intro {
        padding: 50px 0;
        text-align: center;
    }

    .intro-heading {
        font-size: 32px;
        color: var(--color-primary);
        max-width: 900px;
        margin: 0 auto 25px;
        line-height: 1.4;
        font-weight: 700;
    }

    .intro-subtext {
        font-size: 18px;
        max-width: 800px;
        margin: 0 auto;
        color: var(--color-text-gray);
    }

    /* --- NEW SPLIT DONATION LAYOUT --- */
    .projects-split-section {
        padding: 40px 0 80px 0;
    }

    .split-grid {
        display: flex;
        gap: 40px;
        align-items: flex-start;
        justify-content: center;
    }

    .project-column {
        flex: 1;
        background: #fff;
        border: 1px solid var(--color-border-gray);
        border-radius: 8px;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        transition: transform 0.3s ease;
    }

    .project-column:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    }

    .project-img {
        width: 100%;
        height: 250px;
        object-fit: cover;
    }

    .project-content {
        padding: 30px;
        flex-grow: 1;
        display: flex;
        flex-direction: column;
    }

    .project-title {
        color: var(--color-primary);
        font-size: 28px;
        margin-bottom: 15px;
        text-align: center;
    }

    .project-desc {
        font-size: 16px;
        margin-bottom: 25px;
        text-align: justify;
        color: var(--color-text-gray);
        min-height: 150px; /* Aligns buttons */
    }

    .donation-widget {
        background: var(--color-bg-purple-light);
        padding: 20px;
        border-radius: 8px;
        margin-top: auto;
    }

    .widget-title {
        font-size: 16px;
        font-weight: 700;
        text-align: center;
        margin-bottom: 15px;
        color: var(--color-primary);
    }

    .amount-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
        margin-bottom: 15px;
    }

    .amount-btn {
        background: #fff;
        border: 1px solid var(--color-accent);
        color: var(--color-accent);
        padding: 10px;
        font-family: var(--font-family);
        font-weight: 500;
        cursor: pointer;
        border-radius: 4px;
        transition: all 0.2s;
    }

    .amount-btn:hover, .amount-btn.selected {
        background: var(--color-accent);
        color: #fff;
    }

    .custom-amount-input {
        width: 100%;
        padding: 10px;
        border: 1px solid #ccc;
        border-radius: 4px;
        margin-bottom: 15px;
        font-family: var(--font-family);
        text-align: center;
    }

    .donate-action-btn {
        display: block;
        width: 100%;
        padding: 15px;
        background: var(--color-primary);
        color: #fff;
        text-align: center;
        border: none;
        border-radius: 30px;
        font-size: 18px;
        font-weight: 700;
        cursor: pointer;
        transition: background 0.3s;
    }

    .donate-action-btn:hover {
        background: var(--color-accent);
    }

    /* Contact Section */
    .contact-section {
        padding: 40px 0;
        text-align: center;
        background-color: var(--color-bg-purple-light);
        margin-bottom: 50px;
    }

    .contact-title {
        color: var(--color-primary);
        font-size: 20px;
        font-weight: 400;
        max-width: 800px;
        margin: 0 auto;
    }
    
    .contact-title a {
        font-weight: 700;
        color: var(--color-accent);
    }

    /* Footer */
    .site-footer {
        background-color: #231F20;
        color: #fff;
        padding: 55px 0 15px;
    }

    .footer-grid {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 30px;
        max-width: 1140px;
        margin: 0 auto;
    }

    .footer-col {
        flex: 1;
        min-width: 200px;
    }

    .footer-col img {
        width: 185px;
        margin-bottom: 20px;
        margin-top: 15px;
    }

    .footer-col a {
        color: #fff;
        font-weight: 200;
        font-size: 15px;
        display: block;
        margin-bottom: 5px;
    }

    .footer-col a:hover { color: var(--color-accent); }

    .social-links { margin-top: 10px; }
    .social-links a { margin-right: 10px; color: #D5D5D5; font-size: 18px; }

    /* Responsive */
    @media (max-width: 1024px) {
        .main-nav { display: none; }
        .menu-toggle { display: block; }
        
        .main-nav.active {
            display: block;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            background: #fff;
            box-shadow: 0 5px 10px rgba(0,0,0,0.1);
            padding: 20px;
            text-align: left;
        }
        
        .main-nav.active ul { flex-direction: column; align-items: flex-start; }
    }

    @media (max-width: 768px) {
        .hero { min-height: 250px; }
        .intro-heading { font-size: 24px; }
        .split-grid { flex-direction: column; }
        .project-desc { min-height: auto; }
        .footer-grid { flex-direction: column; }
    }