/* Page Wrapper */
.get-involved-content {
    max-width: 1140px;
    margin: 0 auto;
    padding: 80px 20px;
}

/* Hero */
.involved-hero {
    text-align: center;
    margin-bottom: 60px;
}
.hero-title { font-size: 3.5rem; font-weight: 800; color: #111827; }
.hero-title span { color: #6d28d9; }
.hero-desc { color: #6b7280; font-size: 1.1rem; margin: 20px 0 40px; }
.hero-actions { display: flex; justify-content: center; gap: 15px; }

.btn-outline-purple {
    border: 2px solid #6d28d9;
    color: #6d28d9;
    padding: 12px 25px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
}

/* Custom Card System */
.custom-card-wrapper {
    border-radius: 30px;
    padding: 60px;
    margin-bottom: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.white-bg { background: white; border: 1px solid #f3f4f6; }
.purple-bg { background: #6d28d9; color: white; }

.card-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: start;
}

/* Volunteer Styles */
.card-title { font-size: 2rem; font-weight: 800; margin-bottom: 20px; display: flex; align-items: center; gap: 12px; }
.role-list { margin: 20px 0; padding-left: 20px; color: #4b5563; line-height: 1.8; }

.card-form-box { background: #f5f3ff; padding: 35px; border-radius: 20px; color: #111827; }
.form-group { margin-bottom: 15px; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 700; margin-bottom: 5px; }
.form-group input, .form-group select { width: 100%; padding: 12px; border-radius: 8px; border: 1px solid #ddd; }

/* Donation Styles */
.donate-main-title { text-align: center; font-size: 2.5rem; font-weight: 800; margin-bottom: 15px; }
.donate-main-sub { text-align: center; margin-bottom: 50px; opacity: 0.9; max-width: 800px; margin-left: auto; margin-right: auto; }

.impact-row { display: flex; gap: 20px; background: rgba(255,255,255,0.1); padding: 20px; border-radius: 12px; margin-bottom: 15px; }
.bank-card { background: white; color: #111827; padding: 35px; border-radius: 20px; }
.bank-card h3 { color: #6d28d9; margin-bottom: 20px; }

.momo-box { background: #f9fafb; padding: 20px; border-radius: 12px; }
.momo-line { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid #eee; }
.momo-line:last-child { border: none; }
.intl-info span { color: #6d28d9; font-weight: 700; text-decoration: underline; }
.finance-note { font-size: 0.75rem; color: #9ca3af; margin-top: 15px; }

/* Navbar Active State */
.active-nav { color: #6d28d9 !important; font-weight: 800; }

/* --- Right Side Donate Button Styling --- */
.payment-side {
    display: flex;
    flex-direction: column;
    justify-content: center; /* Centers the button vertically in the grid */
    height: 100%;
}

.payment-cta-container {
    background: white;
    padding: 60px 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-donate-large {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background-color: #7c3aed; /* Vibrant purple from your screenshots */
    color: white;
    text-decoration: none;
    padding: 20px 45px;
    border-radius: 12px;
    font-size: 1.25rem;
    font-weight: 800;
    transition: all 0.3s ease;
    width: 100%;
}

.btn-donate-large:hover {
    background-color: #6d28d9;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(124, 58, 237, 0.3);
}

.btn-donate-large i {
    width: 24px;
    height: 24px;
}

.transparency-text {
    margin-top: 20px;
    font-size: 0.8rem;
    color: #6b7280;
    line-height: 1.5;
}

/* Mobile Optimization */
@media (max-width: 850px) {
    .card-grid { grid-template-columns: 1fr; }
    .custom-card-wrapper { padding: 30px; }
}