.green-footer {
    background: #0a1a11;
    color: #fff;
    padding: 60px 0 20px;
    position: relative;
}

.green-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--green-primary-gradient);
}

.green-footer-box {
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    padding: 0 20px 40px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.green-footer h3 {
    font-size: 24px;
    font-weight: 700;
    margin: 0;
    background: var(--green-primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.green-footer p {
    color: rgba(255,255,255,0.7);
    line-height: 2;
    font-size: 15px;
}

.green-copy {
    text-align: center;
    margin-top: 20px;
    padding-top: 20px;
    color: rgba(255,255,255,0.4);
    font-size: 14px;
}