/* ... existing styles ... */

.hero-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
}

.btn-fiverr {
    border-color: #1dbf73;
    /* Fiverr Green */
    color: #1dbf73;
}

.btn-fiverr::before {
    background: #1dbf73;
}

.btn-fiverr:hover {
    color: #fff;
}

/* Mobile adjust */
@media (max-width: 480px) {
    .hero-btns {
        flex-direction: column;
    }
}