
:root {
    /* Main Green Palette */
    --primary: #15803d;      /* Deep Forest */
    --secondary: #10b981;    /* Vibrant Emerald */
    --accent-light: #f0fdf4; /* Mint/Sage Background */
    
    /* Neutrals */
    --bg-light: #f9fafb;
    --text-dark: #111827;
    --text-gray: #6b7280;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-light);
    margin: 0;
    color: var(--text-dark);
}

.support-hero {
    background: white;
    padding: 80px 20px 40px;
    text-align: center;
}

.support-hero h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.highlight {
    color: var(--primary);
    position: relative;
    display: inline-block;
}

/* Create the line using a pseudo-element */
.highlight::after {
    content: '';
    position: absolute;
    bottom: -5px; 
    left: 0;
    height: 4px;
    background: var(--secondary); /* Emerald Green Line */
    border-radius: 2px;
    
    /* Initial state before animation */
    width: 0;
    
    /* Apply the animation */
    animation: loadLine 1.2s ease-out forwards;
    animation-delay: 0.3s;
}

/* Define the loading motion */
@keyframes loadLine {
    0% {
        width: 0;
        opacity: 0;
    }
    100% {
        width: 100%;
        opacity: 1;
    }
}

.support-hero p {
    max-width: 600px;
    margin: 0 auto;
    color: var(--text-gray);
    line-height: 1.6;
}

.support-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
}

.donation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.payment-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

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

.card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.icon-box {
    width: 50px;
    height: 50px;
    background: #f0fdf4;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 1.5rem;
}

.payment-details {
    margin-bottom: 25px;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #f3f4f6;
}

.detail-row:last-child {
    border-bottom: none;
}

.detail-row span {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.btn-copy {
    width: 100%;
    padding: 12px;
    background: var(--bg-light);
    border: 1px solid #d1d5db;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-copy:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.thank-you-note {
    text-align: center;
    margin-top: 50px;
    padding: 30px;
    background: white;
    border-radius: 15px;
    border: 1px dashed #d1d5db;
}

.thank-you-note i {
    color: #ef4444;
    font-size: 1.5rem;
    margin-bottom: 10px;
}