.orange-btn {
    margin-top: 20px;
    padding: 12px 25px;
    background: #F59E0B;
    color: white;
    border: 2px solid #F59E0B;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.orange-btn:hover {
    transform: scale(1.05);
    background: transparent;
    color: #F59E0B;
}

.white-btn {
    margin-top: 20px;
    margin-left: 15px;
    padding: 12px 25px;
    background: white;
    color: #1D4ED8;
    border: 2px solid white;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.white-btn:hover {
    background: transparent;
    color: white;
    border-color: white;
    transform: scale(1.05);
}
@media (max-width: 768px) {
    .orange-btn,
    .white-btn {
        width: auto !important;
        display: inline-block !important;
        margin-left: 0 !important;
        font-size: 14px;
        padding: 10px 18px;
        white-space: nowrap;
    }

    .white-btn {
        margin-top: 10px;
    }
}