/* Grant CTA Section - Fixed */
.grant-cta-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
    margin-top: 60px;
    border-radius: 20px;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.cta-content-box {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.grant-cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.grant-cta-section p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
    color: #e5e7eb;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

/* Ensure buttons pop */
.cta-buttons .btn-primary {
    background: var(--white);
    color: var(--dark) !important;
    border: none;
}

.cta-buttons .btn-lime {
    background: var(--lime);
    color: var(--white) !important;
}

.one-tree-note {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.1);
    padding: 12px 24px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
}

.one-tree-note i {
    color: #4ade80;
    /* bright green tree */
    font-size: 1.2rem;
}

.one-tree-note p {
    font-size: 0.95rem;
    margin: 0;
    color: var(--white);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .grant-cta-section {
        padding: 60px 20px;
    }

    .grant-cta-section h2 {
        font-size: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .one-tree-note {
        flex-direction: column;
        gap: 8px;
        text-align: center;
        border-radius: 20px;
    }
}