@media (max-width: 576px) {
    .custom-btn-group {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px; /* فاصله بین دکمه‌ها */
    }
    .custom-btn-group a {
        width: 100%;
        max-width: 300px; /* یا هر اندازه دلخواه */
    }
}

.btn-01 {
        margin-left: 1.5rem;
    }

@media (max-width: 800px) {
    .btn-01 {
        margin-left: 0px !important;
        margin-top: 0.5rem !important;
    }
}
 
